Don't open Followr. Just ask.
An MCP server that lets Claude, Cursor and any MCP client run your Followr workspace by prompt. Schedule posts, generate avatar videos, triage DMs, launch full campaigns. No tab‑switching.
- 72tools
- 6resources
- 5workflows
- 1npm install
It looks like this in your chat.
Three real conversations. Click a tab to switch.
Spin up a 7‑day campaign for our March cardigan drop. Launch March 15 at 10 AM Buenos Aires. Instagram, X and LinkedIn.
Done. Queued in your Acme workspace:
- 3 teasers between March 12 and 14
- 1 launch post March 15 at 10 AM Buenos Aires
- 3 follow‑ups across March 17 to 20
- tag “cardigan‑drop‑march” applied to all 7
Hero image generated in your brand palette. Approve, or want to review first?
Make 5 short avatar reels about productivity for next week. Use Sofia. Schedule one per day at 8 AM.
Picked Sofia from your library. Here's the slate:
- Mon: the two‑minute rule
- Tue: protect your first hour
- Wed: time‑blocking without guilt
- Thu: when to say no
- Fri: a 10‑minute weekly review
Each reel runs about 700 credits. Your balance is fine. Green‑light all 5?
Any unread DMs? Show me everything and draft replies in my voice.
4 unread across networks:
- Instagram: 2 (stock question + collab pitch)
- Facebook: 1 (shipping complaint, order #4421)
- X: 1 (podcast mention)
Drafts ready in your voice. Want me to send them, or do you want to edit first?
Mocked for illustration. Wording and tools are real. Your AI client decides the exact phrasing.
Six surfaces. One conversation.
Schedule
Post groups, drafts, multi‑network schedules, calendars, time‑zones honored automatically.
“Schedule this carousel for Tuesday at 9 AM in IG and FB.”
Generate
Text, images, audio, lipsync clips, multi‑scene avatar reels with subtitles. All from natural prompts.
“Generate 3 image variants in our brand palette.”
Avatars & voices
Pick or create avatars, pull ElevenLabs voices, render reels with burned‑in subtitles and outfit consistency.
“Create an avatar from this photo. Warm Argentine voice.”
Social inbox
DMs, comments, contacts, conversations across every connected network. Triage and draft replies in one pass.
“Reply to every unread DM. Soft tone, no emoji.”
Validate
Per‑network spec checks before you publish: caption length, asset count, video duration, aspect ratio, account tier.
“Will this run on Twitter Basic? Validate first.”
Workspaces
Multi‑company brand voice, tags, folders, Autopilot rules, Canva imports, analytics. One API key, every workspace.
“In Acme: what posts ran best last month?”
Five workflows that ship in the box.
Multi‑step orchestrations exposed as MCP prompts. Pick one and your AI runs the whole sequence.
Weekly Brief
Hand it a brief. Get a full week of posts drafted in brand voice, balanced across networks, scheduled day by day.
/followr.weekly‑brief
Campaign Launch
Tag taxonomy, hero asset, teasers, launch post, follow‑ups. All scheduled, all tagged, all in one prompt.
/followr.campaign‑launch
Video Series
N avatar reels on one topic. Distinct angles, lipsync renders, scheduled at your chosen cadence.
/followr.video‑series
Crisis Response
Three response variants (apology / clarification / deflection) staged as drafts. A human picks one and publishes.
/followr.crisis‑response
URL Repurpose
Drop a blog or article URL. Get a thread, a carousel, a LinkedIn post and a video script. Tailored per network.
/followr.repurpose‑from‑url
Your own.
Compose any of the 72 tools into a custom workflow. Or fork the repo and add a preset.
Open the repo →For everyone who lives in a chat window.
Twelve clients. One prompt.
Switch workspaces with a sentence. Compare calendars. Push the same campaign across all of them.
“In every workspace: list posts scheduled for next week.”
Stop tab‑hopping. Ship.
Write the post, generate the visual, schedule it, walk away. The dashboard is a chat.
“Turn this newsletter into a carousel and a Reel.”
Three days of prep. One paragraph.
Brief the AI like you'd brief a junior planner. Get a full campaign back, tagged and scheduled.
“Build the March 15 launch. Teasers, launch, follow‑ups.”
Every inbox. One window.
Triage DMs and comments across every network. Draft replies in brand voice. Approve, edit, send.
“Show me everything unread. Draft replies.”
Bring your own AI.
MCP is an open protocol. If your client speaks it, Followr fits.
One npm command. One API key. Done.
No build step. No service to host. The MCP runs as a subprocess of your AI client.
New to MCPs? Read the full step-by-step install guide. Open guide →Heads up: the Followr API is available on plans that include API access, or on plans with the API key add-on. If your plan does not include it, the MCP will install but every call will return 401. Check this inside your Followr account first.
From inside Claude Desktop: profile picture (bottom-left) → Settings → Developer → Edit Config. Paste this into claude_desktop_config.json:
{
"mcpServers": {
"followr": {
"command": "npx",
"args": ["-y", "@followr/mcp"],
"env": {
"FOLLOWR_API_TOKEN": "PASTE_YOUR_API_KEY_HERE"
}
}
}
}
Fully close Claude Desktop (Cmd+Q on macOS, system tray → Quit on Windows) and open it again from scratch. Closing the window is not enough. The first npx download takes 5 to 10 seconds; cached after.
Run this once. --scope user makes the MCP available in every project.
claude mcp add --scope user followr --env 'FOLLOWR_API_TOKEN=PASTE_YOUR_API_KEY_HERE' -- npx -y @followr/mcp
Single quotes around the env var are mandatory. Followr API keys contain a pipe (|) which the shell would otherwise truncate.
Edit ~/.cursor/mcp.json (or use Cursor Settings → MCP):
{
"mcpServers": {
"followr": {
"command": "npx",
"args": ["-y", "@followr/mcp"],
"env": {
"FOLLOWR_API_TOKEN": "PASTE_YOUR_API_KEY_HERE"
}
}
}
}
Same JSON shape as Claude Desktop. Reload Cursor and the connector appears.
Need a Followr API key?
- Sign in to Followr.
- Click your profile picture in the top-left → select API Keys from the dropdown (or open the API Keys settings directly).
- Generate, name it (e.g. “Claude MCP”), copy the API key. Followr only shows it once.
Stays where you put it.
Local subprocess
The MCP runs on your machine. Your API key lives in your AI client's config file. The only host that ever sees it is api.followr.ai.
Never logged
The MCP doesn't write the API key to disk, doesn't print it, doesn't send it anywhere else. Verify in the source.
Open source. MIT.
Every tool, every API call, every line of code. Auditable. Forkable. PRs welcome.
Ready to plug Followr into your AI chat?
One npm install, one API key, zero new dashboards.
Want to read the API behind it? Community docs →