Post to your socials from Claude
Petit Panda ships an MCP server. Plug it into Claude Code, Claude Desktop, Cursor or n8n: your agent reads your connected accounts, writes your posts and schedules them on your slots. Without leaving your conversation.
What it changes
No more copy-paste
You write your post in Claude, it goes straight into Petit Panda. No more switching between your conversation and an interface.
Your slots, respected
The agent asks for your next free slot and schedules on it. Your publishing calendar stays yours.
Automation ready
MCP is an open protocol, JSON-RPC 2.0 over HTTP. A single HTTP node in n8n or Make is enough to trigger a publication from an existing workflow.
Connect it in 3 steps
- 1
Create your API key
In Settings > API on your Petit Panda account, click Create a key. It is shown only once: copy it right away.
- 2
Add the server to your client
One terminal command for Claude Code. For Claude Desktop or Cursor, an mcpServers block in your config.
Claude Codeclaude mcp add --transport http petitpanda https://mcp.petitpanda.io/mcp \ --header "petitpanda-api-key: pp_live_xxx"Claude Desktop / Cursor{ "mcpServers": { "petitpanda": { "url": "https://mcp.petitpanda.io/mcp", "transport": "http", "headers": { "petitpanda-api-key": "pp_live_xxx" } } } } - 3
Check the connection
Ask your agent to call petitpanda_get_user. If it returns your plan and your connected accounts, you are set.
A paid plan (Pro, Business or Agency) is required. The Settings > API page shows the command ready to copy, with your key already filled in.
Available tools
Your agent gets them as soon as it connects.
petitpanda_get_userChecks your connection: plan, connected accounts, key scopes.
petitpanda_list_accountsLists your connected accounts and their IDs, to pass to the other tools.
petitpanda_next_free_slotReturns your next free publishing slot.
petitpanda_media_specsGives the formats each network accepts: durations, ratios, file sizes.
petitpanda_list_schedulesLists your scheduled posts.
petitpanda_get_postFetches the details and status of a post.
petitpanda_create_upload_urlHosts a local file and returns a public URL you can use in a post.
petitpanda_create_postPublishes now, or schedules on a specific date or on your next free slot.
petitpanda_update_scheduleMoves a scheduled post.
petitpanda_delete_scheduleCancels a scheduled post.
What it looks like
Sentences, not API calls.
Works with
MCP is an open protocol: any client that speaks it works.