Using pepe.business with AI agents via MCP
The Model Context Protocol (MCP) is the standard way for AI agents to interact with external services. pepe.business exposes a hosted MCP server with 480+ tools.
What you can do
With the MCP server, your AI agent can:
Setup for Claude Desktop
Add this to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
``json
{
"mcpServers": {
"pepe-business": {
"url": "https://mcp.pepe.business/mcp",
"transport": "http",
"auth": {
"type": "bearer",
"token": "pk_live_xxx"
}
}
}
}
`
Restart Claude. Now you can say:
> "Publish on Twitter and LinkedIn: 'We just shipped v2!' with the image https://example.com/v2.png"
Claude will call pepe.posts.create automatically.
Setup for Cursor
- Auth: Bearer pk_live_xxx
Save and restart Setup for VS Code (Copilot)
Add to
settings.json:`json
{
"github.copilot.chat.mcp.servers": {
"pepe": {
"url": "https://mcp.pepe.business/mcp",
"headers": { "Authorization": "Bearer pk_live_xxx" }
}
}
}
`Available tools
The MCP server exposes 480+ tools. The most popular:
pepe.posts.create — Create a multi-platform post
pepe.posts.list — List your posts
pepe.accounts.list — List connected accounts
pepe.analytics.post — Get metrics for a post
pepe.autopilot.run — Launch Auto-Pilot
pepe.templates.browse — Browse marketplace
pepe.inbox.conversations` — List DM conversationsSee the full tool list.
Try it now
That's it — your AI agent is now a social media manager.