Connect AI Agents to MultiFollow with MCP

MultiFollow already has a REST API for managing trackers. MCP, the Model Context Protocol, is how AI agents call that same surface without you writing glue code. One URL, your existing API key, and Claude, ChatGPT, Cursor, VS Code, or any other MCP client can list, create, update, and delete Linkedin and X trackers on your account.

Signals still arrive by email, Slack, or API webhook. MCP is for the other half of the loop: letting an agent maintain the watchlist. "Track this prospect on Linkedin, posts and comments only, keyword hiring" becomes a tool call instead of a dashboard click.

What the agent can do

The MCP server exposes five tools that match the REST API:

Plan limits, reader/manager roles, and webhook entitlements are the same as the API. MCP is available on Business, Enterprise, and custom plans.

Connect in a few minutes

  1. Open your MultiFollow dashboard, go to API & MCP, and create an API key.
  2. Point your MCP client at https://api.multifollow.io/mcp.
  3. Send the header Authorization: Bearer YOUR_API_KEY.

Claude Code

claude mcp add --transport http multifollow https://api.multifollow.io/mcp --header "Authorization: Bearer YOUR_API_KEY"

Cursor / VS Code

Add this to mcp.json:

{
  "mcpServers": {
    "multifollow": {
      "url": "https://api.multifollow.io/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Claude Desktop / claude.ai

Settings → Connectors → Add custom connector. Paste https://api.multifollow.io/mcp. For authentication, add a request header named Authorization with value Bearer YOUR_API_KEY.

ChatGPT

Enable Developer mode under Settings → Apps & Connectors → Advanced settings, then create a connector with the same URL and bearer token.

Create an API key

Example prompts

Once the client is connected, you can talk to the agent in plain language:

The agent uses the tools; you do not have to remember field names. Full parameter reference is in the MCP documentation.

Frequently asked questions

Is MCP a replacement for the REST API?


No. The REST API is still there for scripts, backends, and Zapier-style HTTP. MCP is the same operations, packaged for AI agents. Both use the same API keys and the same plan.

Does MCP receive the sales signals?


No. When a tracked profile posts, comments, or likes, MultiFollow still delivers the signal by email, Slack, or API webhook. MCP is for managing trackers, not for streaming activity. Pipe webhooks into Clay, n8n, or your CRM as before.

Which plans include MCP?


Business ($79/month), Enterprise, and custom plans. The same plans that include the REST API.