Connect Exceefy MCP to another AI tool

Universal configuration to connect Exceefy to any AI tool compatible with the MCP protocol.

This guide explains how to connect the Exceefy MCP server to any AI tool that supports the MCP protocol.

Exceefy MCP server URL: https://api.exceefy.com/mcp Transport type: SSE (Server-Sent Events)

Universal configuration

The vast majority of MCP-compatible tools use a JSON configuration file with the following standard format:

{
  "mcpServers": {
    "exceefy": {
      "url": "https://api.exceefy.com/mcp"
    }
  }
}

Some tools use serverUrl or transport.url instead of url. Check your tool's documentation for the exact field name.

Compatible tools

The MCP protocol is supported by a growing number of tools. Here are the most common ones and how to configure them:

Continue (VS Code / JetBrains extension)

Edit the file ~/.continue/config.json:

{
  "mcpServers": [
    {
      "name": "exceefy",
      "transport": {
        "type": "sse",
        "url": "https://api.exceefy.com/mcp"
      }
    }
  ]
}

Zed

In Zed's settings (~/.config/zed/settings.json):

{
  "context_servers": {
    "exceefy": {
      "settings": {},
      "source": {
        "type": "url",
        "url": "https://api.exceefy.com/mcp"
      }
    }
  }
}

Cline (VS Code)

In Cline's MCP settings (MCP icon in the sidebar), click Add Server, choose Remote (SSE) and enter:

https://api.exceefy.com/mcp

Other tools

If your tool is not listed, look in its settings for a section named MCP, External Tools, Context Providers, or Plugins. Fill in:

  • URL / Endpoint: https://api.exceefy.com/mcp
  • Transport / Type: SSE
  • Name: exceefy

Test the connection

Once configured, try asking your AI tool:

"What portfolios do I have on Exceefy?"

If the MCP server is properly connected, the AI will retrieve your data in real time.

💡 Dedicated guides are available for Claude, Cursor, and Windsurf. Also check the main article Does Exceefy have an MCP server?.