MCP Server

Hosted MCP server exposing 480+ tools for AI agents (Claude, Cursor, ChatGPT).

Edit this page·Last updated: July 13, 2026

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)

ToolDescription
pepe.posts.createCreate a multi-channel post
pepe.posts.listList posts
pepe.accounts.listList connected accounts
pepe.inbox.conversationsList conversations
pepe.analytics.postGet metrics for a post
pepe.ads.boostBoost a post as an ad
pepe.autopilot.runRun Auto-Pilot on a URL
pepe.webhooks.listList 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)

Was this page helpful?