- Drop `FREECAD_MCP_` prefix from env vars (use `FREECAD_*`) - Update freecad_mcp port from 22032 to 22061 - Document that FreeCAD bridge is required for tool calls - Replace kottos deployment with pallas deployment
21 lines
972 B
Django/Jinja
21 lines
972 B
Django/Jinja
# FreeCAD Robust MCP Server — Environment Configuration
|
|
# Managed by Ansible — do not edit manually
|
|
|
|
# =============================================================================
|
|
# MCP Transport Configuration
|
|
# =============================================================================
|
|
FREECAD_TRANSPORT=http
|
|
FREECAD_HTTP_PORT={{ freecad_mcp_port }}
|
|
|
|
# =============================================================================
|
|
# FreeCAD Connection Mode
|
|
# =============================================================================
|
|
FREECAD_MODE={{ freecad_mcp_mode | default('xmlrpc') }}
|
|
FREECAD_XMLRPC_PORT={{ freecad_mcp_xmlrpc_port | default('9875') }}
|
|
FREECAD_TIMEOUT_MS={{ freecad_mcp_timeout_ms | default('30000') }}
|
|
|
|
# =============================================================================
|
|
# Logging
|
|
# =============================================================================
|
|
FREECAD_LOG_LEVEL={{ freecad_mcp_log_level | default('INFO') }}
|