Skip to main content

Documentation Index

Fetch the complete documentation index at: https://dev.magicpost.in/llms.txt

Use this file to discover all available pages before exploring further.

Cursor 0.46+ ships with native MCP support and handles both stdio and streamable HTTP transports. If you’re on 0.46 or later, use Option A. If you’re on an older version, use Option B.
1

Open Cursor Settings

Go to Cursor → Settings → Features → MCP and click + Add new MCP server.
2

Fill the form

FieldValue
Namemagicpost
Typestreamable-http
URLhttps://mcp.magicpost.in/mcp
HeadersAuthorization: Bearer mp_YOUR_TOKEN
Replace mp_YOUR_TOKEN with your MagicPost API key.
3

Save and reload

Cursor connects immediately on save. You should see “8 tools loaded” in the server row.

Option B — stdio bridge (Cursor < 0.46)

This uses the same mcp-remote approach as Claude Desktop. Edit ~/.cursor/mcp.json (create it if it doesn’t exist):
{
  "mcpServers": {
    "magicpost": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.magicpost.in/mcp",
        "--header",
        "Authorization:Bearer mp_YOUR_TOKEN"
      ]
    }
  }
}
Replace mp_YOUR_TOKEN with your MagicPost API key, then restart Cursor.

Use it from chat

Open the Cursor chat with Cmd+L, enable Composer + agent mode, and try a prompt like:
Summarize my MagicPost LinkedIn analytics for the last 30 days
Cursor will prompt you to approve the get_metrics_summary tool call. You can enable auto-approval from the same MCP settings panel if you prefer.