[ ABORT TO HUD ]
SEQ. 1
SEQ. 2
SEQ. 3
SEQ. 4
SEQ. 5

MCP Across Tools

🛡️ Production & Sec12 min110 BASE XP

MCP Is Multi-Vendor

MCP is an open standard — not locked to Claude. As of 2026, 7+ major AI coding tools support MCP as a first-class integration:

ToolConfig FileConfig Location
Claude Desktopclaude_desktop_config.json~/Library/Application Support/Claude/ (Mac) or %APPDATA%\Claude\ (Win)
Claude Code CLI/mcp commandIn-session or .claude/settings.json
Cursormcp.json~/.cursor/mcp.json (global) or .cursor/mcp.json (project)
VS Code + Copilotsettings.jsonEnable chat.mcp.enabled: true in settings
Windsurfmcp_config.json~/.codeium/windsurf/mcp_config.json
Clinecline_mcp_settings.jsonVia MCP Servers toolbar icon in VS Code
JetBrains IDEsSettings UISettings > Tools > AI Assistant > MCP

Config Portability

The mcpServers JSON block is portable across all tools. The same config works everywhere:

// Same config works in Claude Desktop, Cursor, Windsurf, Cline:
{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-github"],
      "env": { "GITHUB_TOKEN": "ghp_..." }
    }
  }
}
💡 Key Insight: Write your MCP server once — it works in ALL tools. This is the core promise of the protocol. No vendor-specific code needed.

Setup Guide per Tool

Cursor

Settings > Tools & MCP > Add New MCP Server. Or create .cursor/mcp.json in your project root for team-shared configs.

Windsurf (Cascade)

Open Cascade panel > MCP Servers button > Configure. Or edit ~/.codeium/windsurf/mcp_config.json directly. Click Refresh after changes.

VS Code + GitHub Copilot

Set chat.mcp.enabled: true in VS Code settings (requires v1.102+). MCP servers appear in Copilot chat.

Cline (VS Code Extension)

Click the MCP Servers icon in the Cline toolbar. Use the built-in Marketplace to install servers with one click, or add custom configs.

JetBrains (IntelliJ, WebStorm, PyCharm)

Settings > Tools > AI Assistant > MCP. JetBrains can also act as an MCP server — exposing your project structure to other AI tools.

MCP Server Registries

Discover pre-built servers at:

  • mcp.so — Community registry with 1000+ servers
  • Smithery — Curated marketplace
  • Cline Marketplace — One-click install from VS Code
  • Official GitHub — github.com/modelcontextprotocol/servers
SYNAPSE VERIFICATION
QUERY 1 // 3
Is MCP locked to Claude/Anthropic?
Yes, it only works with Claude
No, it is an open standard supported by 7+ tools including Cursor, VS Code, Windsurf
Only Claude and Cursor
Only Anthropic products
Watch: 139x Rust Speedup
MCP Across Tools | Production & Sec — MCP Academy