fix: update FreeCAD MCP server port from 22082 to 22032 for consistency across documentation and configuration

This commit is contained in:
2026-03-21 22:19:22 +00:00
parent 6f48b38868
commit f6aae9a6ea
4 changed files with 10 additions and 10 deletions

View File

@@ -12,7 +12,7 @@ consumption.
│ │
│ ┌──────────────────────┐ │
│ │ freecad-mcp.service │ │
│ │ (streamable-http) │◄─── :22082 ──────────┤◄── MCP Switchboard
│ │ (streamable-http) │◄─── :22032 ──────────┤◄── MCP Switchboard
│ │ venv + PyPI package │ │ (oberon.incus)
│ └──────────────────────┘ │
│ │ │
@@ -62,7 +62,7 @@ Add to `ansible/inventory/host_vars/caliban.incus.yml`:
freecad_mcp_user: harper
freecad_mcp_group: harper
freecad_mcp_directory: /srv/freecad-mcp
freecad_mcp_port: 22082
freecad_mcp_port: 22032
freecad_mcp_version: "0.5.0"
```
@@ -100,7 +100,7 @@ The playbook automatically validates the deployment by:
You can also manually test:
```bash
curl -X POST http://caliban.incus:22082/mcp \
curl -X POST http://caliban.incus:22032/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"initialize","id":1,"params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"curl","version":"1.0.0"}}}'
```