socialbunny-mcp
v0.1.0
Published
MCP server for SocialBunny — draft and publish posts to your connected social accounts from Claude Code, Codex, and Cursor.
Downloads
33
Maintainers
Readme
socialbunny-mcp
MCP server for SocialBunny — draft and publish posts to your connected social accounts, in your trained clone's voice, from Claude Code, Codex, and Cursor.
What it does
Exposes these tools to your AI assistant:
| Tool | What it does |
|------|--------------|
| list_clones | List your trained clones (voice + product knowledge). |
| list_platforms | List your connected social accounts. |
| list_post_types | List every platform × format you can publish. |
| draft_post | Write a post and return a preview (returns a task_id). |
| publish_draft | Publish a drafted post by task_id. |
| post_now | Write and publish in one step. |
Each post is written in your clone's voice, uses the clone's product/service knowledge, respects each platform's limits, and can post to several platforms at once.
Setup
- Get an API key: SocialBunny → API & MCP → Create key (copy it, it's shown once).
- Add the server to your tool:
Claude Code
claude mcp add socialbunny --env SOCIALBUNNY_API_KEY=sbk_your_key -- npx -y socialbunny-mcpCursor — ~/.cursor/mcp.json
{
"mcpServers": {
"socialbunny": {
"command": "npx",
"args": ["-y", "socialbunny-mcp"],
"env": { "SOCIALBUNNY_API_KEY": "sbk_your_key" }
}
}
}Codex — ~/.codex/config.toml
[mcp_servers.socialbunny]
command = "npx"
args = ["-y", "socialbunny-mcp"]
env = { SOCIALBUNNY_API_KEY = "sbk_your_key" }Usage
Just ask your assistant, e.g.:
- "Draft a LinkedIn post about our new pricing and show me before posting." →
draft_post→ you review → "post it" →publish_draft. - "Post a thread on X and Threads announcing the launch." →
post_now.
Environment
| Var | Required | Default |
|-----|----------|---------|
| SOCIALBUNNY_API_KEY | yes | — |
| SOCIALBUNNY_API_URL | no | https://socialbunny-api.onrender.com |
License
MIT
