FeedMansion Social Media MCP
officialSchedule and queue text, image, and video posts to many social networks, including LinkedIn, X, Bluesky, Instagram, Facebook, Threads, Tiktok.
← Back to Help Center
Connect AI Assistants via MCP
Connect Claude, ChatGPT, Perplexity, Manus AI, and other AI assistants to FeedMansion. Draft posts and manage queues from your AI chat. Nothing publishes without your approval.
GitHub Repo: For platform-specific setup guides and example prompts, see github.com/makerprism/feedmansion-ai-agents
What is MCP?
The Model Context Protocol (MCP) is an open standard that lets AI assistants connect to external tools. FeedMansion runs an MCP server so your AI assistant can draft social media content in your brand voice and organize approved drafts into queues, all from within your AI chat. Nothing publishes without your explicit approval in FeedMansion.
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:
- Go to Settings > API Tokens in FeedMansion
- Choose the Agent token type
- Optionally restrict the token to specific presences
- 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)
- Open Claude > Settings > Integrations (or Connectors)
- Click Add MCP Server (or Add Custom Connector)
- Enter the server URL:
https://feedmansion.com/mcp - For authentication, add a custom header:
- Header name:
Authorization - Header value:
Bearer fm_pat_YOUR_TOKEN_HERE
- Header name:
- 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
- Open ChatGPT > Settings > MCP
- Click Add MCP Server
- Enter the server URL:
https://feedmansion.com/mcp - Set the authentication header:
Authorization: Bearer fm_pat_YOUR_TOKEN_HERE - Save. ChatGPT will discover the available tools.
Perplexity
- Open Perplexity > Settings > MCP
- Click Add Server
- Enter the URL:
https://feedmansion.com/mcp - Add your token as a Bearer authorization header
- Save and test the connection
Manus AI
- Open Manus AI > Settings > MCP Servers
- Add a new server with URL:
https://feedmansion.com/mcp - Configure authentication with your Agent Token as a Bearer token
- Save. Manus will detect the available FeedMansion tools.
OpenClaw
Self-hosted option. OpenClaw runs on your own infrastructure, giving you full control and privacy. Best suited for users comfortable with server administration and security configuration.
Security note: Properly securing an OpenClaw deployment (authentication, network exposure, token management, updates) is nontrivial. If misconfigured, it could expose your FeedMansion account or other connected services.
For a simpler and more secure setup without self-hosting, try Claude or Cursor instead.
OpenClaw is a personal AI assistant platform that runs on your own infrastructure.
Using the FeedMansion Skill
- Copy the skill to your OpenClaw workspace:
# Clone the AI agents repo
git clone https://github.com/makerprism/feedmansion-ai-agents.git
# Copy the skill
cp feedmansion-ai-agents/platforms/openclaw/SKILL.md ~/.openclaw/workspace/skills/feedmansion/SKILL.md
- Configure your PAT in OpenClaw (
~/.openclaw/openclaw.json):
{
"env": {
"FEEDMANSION_PAT": "fm_pat_YOUR_TOKEN_HERE"
}
}
- Restart OpenClaw:
openclaw gateway restart
Now you can use FeedMansion tools directly in OpenClaw! Try:
- "List my FeedMansion presences"
- "Generate a post from https://example.com/article"
- "Create a draft for presence 'abc123' with text 'Hello world!'"
For full documentation, see the OpenClaw platform guide.
Cursor / Other MCP Clients
Any MCP client that supports Streamable HTTP transport can connect using this JSON config:
Replace `fm_pat_YOUR_TOKEN_HERE` with your actual Agent Token.
## Tool Approval
All FeedMansion tools are safe to auto-approve. None of them publish content directly. The server-side supervision gate ensures nothing goes live without your review in the FeedMansion web UI. You can allow your AI client to call all FeedMansion tools without asking for confirmation each time.
## What Can AI Assistants Do?
Once connected, your AI assistant has access to these tools:
**Discovery**
* **list\_presences** \- See all your presences (brands/projects)
* **get\_presence** \- Get details about a presence, including connected accounts, queues, and ghost writers
* **list\_drafts** \- Browse drafts, optionally filtered by status
* **get\_draft** \- Read a specific draft with its details
* **get\_scheduled\_and\_queued\_posts** \- See what's scheduled and queued for future publishing
* **get\_published\_posts** \- See what has been published or failed for a date range
**Create drafts**
* **create\_draft** \- Create a draft using AI in your brand voice. Optionally generate from a URL or attach media. Ghost writers and custom prompts are optional.
* **batch\_create\_drafts** \- Create up to 10 drafts at once
**Brand voice + media**
* **get\_brand\_voice** \- Retrieve your complete brand voice for external content creation
* **edit\_draft** \- Edit an existing draft's text or title
* **add\_draft\_media** \- Attach an image or video to a draft (from URL, presigned upload, or inline base64)
* **remove\_draft\_media** \- Remove an attached media item from a draft
**Schedule drafts**
* **schedule\_draft** \- Approve a draft and add it to a publishing queue in one step
* **batch\_schedule\_drafts** \- Schedule multiple drafts at once with shared target accounts and queue
**Feedback**
* **submit\_bug\_report** \- Report a bug directly from your AI chat
* **submit\_feature\_request** \- Suggest a new feature or improvement
## 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 "Ready to Publish" 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.
Related Servers
Say MCP Server
A server for voice notifications using VoiceBox, with a fallback to the Mac 'say' command.
Apple Mail MCP
Fast MCP server for Apple Mail with batch JXA (87x faster) and FTS5 search index (700-3500x faster).
LGTM Images
Fetches random LGTM (Looks Good To Me) images for use in code reviews and developer communications.
Twilio Manager MCP
Manage Twilio resources such as subaccounts, phone numbers, and regulatory bundles using the Twilio API.
LinkedIn Post Generator
Generates professional LinkedIn post drafts from YouTube videos by summarizing their content.
Apollo.io MCP
MCP server for Apollo.io, search leads, enrich contacts, manage sequences & CRM from Claude Code, Cursor, or any MCP client. 45+ tool calls covering the full Apollo.io API.
DeepL
Translate text using the DeepL API.
Hawaiihub MCP Server
An MCP server for a Chinese community news platform, featuring automated content collection, multi-platform publishing, and intelligent operations.
Theagora
Agent-to-agent service exchange with atomic escrow, cryptographic verification, and per-function reputation. 27 MCP tools.
Gmail
Query live Gmail data using LLMs via CData's read-only MCP server.