Skip to main content

MCP for AI Agents

MultiFollow exposes a remote Model Context Protocol (MCP) server so AI agents can manage your trackers. Claude, ChatGPT, Cursor, VS Code, and any other MCP client can list, create, update, and delete LinkedIn and X (Twitter) trackers using the same API key as the REST API.

MCP does not stream sales signals. When a tracked profile posts, comments, or likes, alerts still go out by email, Slack, or API webhook. MCP is for maintaining the watchlist.

Availability

MCP is included on the same plans as the REST API: Business, Enterprise, and custom plans. Generate an API key from your dashboard under API & MCP.

Endpoint

https://api.multifollow.io/mcp

Transport: Streamable HTTP (MCP spec). Authenticate every request with a Bearer token:

Authorization: Bearer your-api-key-here

Connect a client

Claude Code

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

Cursor / VS Code

Add to mcp.json (project .cursor/mcp.json or user ~/.cursor/mcp.json):

{
"mcpServers": {
"multifollow": {
"url": "https://api.multifollow.io/mcp",
"headers": {
"Authorization": "Bearer your-api-key-here"
}
}
}
}

Claude Desktop / claude.ai

  1. Open Settings → Connectors → Add custom connector
  2. Server URL: https://api.multifollow.io/mcp
  3. Add a request header: Authorization = Bearer your-api-key-here

ChatGPT

  1. Settings → Apps & Connectors → Advanced settings and enable Developer mode
  2. Create a connector with URL https://api.multifollow.io/mcp
  3. Authenticate with the same Bearer token

Tools

The server advertises five tools. Full argument reference: MCP Tools.

ToolWhat it does
list_trackersList LinkedIn and/or X trackers on your team
get_trackerGet one tracker by platform and ID
create_trackerCreate a tracker
update_trackerReplace a tracker (send the full object)
delete_trackerDelete a tracker

Plan limits, reader/manager roles, URL validation, and webhook entitlements are identical to the REST API.

Example prompts

Once the client is connected:

  • "List my LinkedIn trackers and tell me which ones are paused."
  • "Create a tracker for https://www.linkedin.com/in/johndoe/ that watches posts and comments, filtered to hiring,funding."
  • "Watch https://x.com/acme on posts only."
  • "Disable LinkedIn tracker 42 without deleting it."