Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Open Claude Desktop

  2. Go to Settings → Developer → Edit Config

  3. Open "claude_desktop_config.json"

  4. Add the configuration:

language
Code Block
No Format
c#
{
  "mcpServers": {
    "FrameworX-Designer": {
      "command": "C:\\Program Files (x86)\\Tatsoft\\FrameworX\\fx-10\\MCP\\DesignerMCP.exe",
      "transport": "stdio"
    },
    "filesystem": {
      "command": "C:\\Program Files\\nodejs\\npx.cmd",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "C:\\Users\\marcostaccolini\\Documents\\FrameworX\\Exchange"
      ]
    }
  },
  "preferences": {
    "coworkScheduledTasksEnabled": false,
    "sidebarMode": "chat"
  }
} 



Replace <ProductPath> with your FrameworX installation directory (use double backslashes)

...