Connect AI Assistants via MCP

Step-by-step guide to connect Claude, ChatGPT, Perplexity, Manus AI, and other AI assistants to FeedMansion.

Note: The Help Center is under construction. Articles may be incomplete, outdated, or still evolving.

What is MCP?

The Model Context Protocol (MCP) is an open standard that lets AI assistants connect to external tools and services. FeedMansion provides a built-in MCP server so your AI assistant can help you manage content — drafting posts, organizing queues, and more — all from within your AI chat.

No installation or self-hosting required. FeedMansion's MCP server runs remotely at https://feedmansion.com/mcp.

Prerequisites

Before connecting an AI assistant, you need an Agent Token:

  1. Go to Settings → API Tokens in FeedMansion
  2. Choose the Agent token type
  3. Optionally restrict the token to specific presences
  4. Click Create Token and copy the token (it starts with fm_pat_)

Agent tokens include a supervision gate: your AI assistant can create and organize content, but nothing gets published without your explicit approval in the FeedMansion UI.

Claude

Claude.ai (Web / Desktop)

  1. Open ClaudeSettingsIntegrations (or Connectors)
  2. Click Add MCP Server (or Add Custom Connector)
  3. Enter the server URL: https://feedmansion.com/mcp
  4. For authentication, add a custom header:
    • Header name: Authorization
    • Header value: Bearer fm_pat_YOUR_TOKEN_HERE
  5. Save — Claude will discover the available FeedMansion tools automatically

Claude Code / Claude Desktop (JSON config)

Add to your MCP configuration file:

{
  "mcpServers": {
    "feedmansion": {
      "type": "streamable-http",
      "url": "https://feedmansion.com/mcp",
      "headers": {
        "Authorization": "Bearer fm_pat_YOUR_TOKEN_HERE"
      }
    }
  }
}

ChatGPT

  1. Open ChatGPTSettingsMCP
  2. Click Add MCP Server
  3. Enter the server URL: https://feedmansion.com/mcp
  4. Set the authentication header: Authorization: Bearer fm_pat_YOUR_TOKEN_HERE
  5. Save — ChatGPT will discover the available tools

Perplexity

  1. Open PerplexitySettingsMCP
  2. Click Add Server
  3. Enter the URL: https://feedmansion.com/mcp
  4. Add your token as a Bearer authorization header
  5. Save and test the connection

Manus AI

  1. Open Manus AISettingsMCP Servers
  2. Add a new server with URL: https://feedmansion.com/mcp
  3. Configure authentication with your Agent Token as a Bearer token
  4. Save — Manus will detect the available FeedMansion tools

Cursor / Other MCP Clients

Any MCP client that supports Streamable HTTP transport can connect using this JSON config:

{
  "mcpServers": {
    "feedmansion": {
      "type": "streamable-http",
      "url": "https://feedmansion.com/mcp",
      "headers": {
        "Authorization": "Bearer fm_pat_YOUR_TOKEN_HERE"
      }
    }
  }
}

Replace fm_pat_YOUR_TOKEN_HERE with your actual Agent Token.

What Can AI Assistants Do?

Once connected, your AI assistant has access to these tools:

  • list_presences — See all your presences (brands/projects)
  • get_presence — Get details about a specific presence, including connected social accounts
  • list_content — Browse content drafts, optionally filtered by status
  • get_content — Read a specific piece of content
  • create_content — Create a new draft
  • generate_content_from_url — Generate a draft from a URL using AI
  • approve_content — Submit a draft for human review (with target social accounts)
  • enqueue_content — Request to add content to a publishing queue

Safety: The Supervision Gate

Agent tokens enforce a supervision gate — your AI assistant can prepare content, but critical actions require your approval:

  • Creating drafts: Allowed — drafts are saved with status "draft"
  • Approving content: The AI submits content for your review — it moves to "pending review" status, not directly to publishing
  • Enqueuing content: The AI saves an enqueue intent — you confirm it in the FeedMansion UI
  • Publishing: Not available to AI assistants — only humans can publish

This means your AI assistant is a powerful content co-pilot, but you always have the final say before anything goes live.