MCP Server
pepe.business exposes a hosted Model Context Protocol (MCP) server that allows any AI agent (Claude, Cursor, ChatGPT, VS Code Copilot) to pilot your social presence. 480+ tools are exposed in read/write mode.
Endpoint
https://mcp.pepe.business/mcp
Authentication
Two modes:
- OAuth 2.1 (recommended for Claude Desktop, Cursor)
- Bearer API key (simpler for scripts)
Authorization: Bearer pk_live_xxx
Claude Desktop configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"pepe-business": {
"url": "https://mcp.pepe.business/mcp",
"transport": "http",
"auth": {
"type": "bearer",
"token": "pk_live_xxx"
}
}
}
}
Restart Claude. You can now say:
"Post on Twitter and LinkedIn: 'We just shipped v2!' with the image https://example.com/v2.png"
Claude will call pepe.posts.create automatically.
Cursor configuration
Settings > Cursor > MCP Servers > Add:
URL: https://mcp.pepe.business/mcp
Auth: Bearer pk_live_xxx
VS Code (Copilot) configuration
settings.json:
{
"github.copilot.chat.mcp.servers": {
"pepe": {
"url": "https://mcp.pepe.business/mcp",
"headers": { "Authorization": "Bearer pk_live_xxx" }
}
}
}
Available tools (excerpt)
| Tool | Description |
|---|---|
pepe.posts.create | Create a multi-channel post |
pepe.posts.list | List posts |
pepe.accounts.list | List connected accounts |
pepe.inbox.conversations | List conversations |
pepe.analytics.post | Get metrics for a post |
pepe.ads.boost | Boost a post as an ad |
pepe.autopilot.run | Run Auto-Pilot on a URL |
pepe.webhooks.list | List webhooks |
The 480+ tools are listed in the MCP explorer.
AI agent use cases
- AI community manager: automatically responds to comments and DMs
- Auto-publisher: publishes AI-generated content at optimal times
- Analytics assistant: asks natural-language questions about your metrics
- Crisis monitor: sends a Slack alert if a negative post goes viral
- Full Auto-Pilot: the agent scans your site, generates content, posts
Rate limits
- 100 tools/min per agent
- 10 concurrent calls max
- Burst allowed (up to 200/min for 30s)