PP
PPToGo
๐Ÿ”Œ Developer Docs ยท MCP

PPToGo MCP Server

PPToGo exposes a Model Context Protocol (MCP) server at https://pptogo.com/api/mcp that lets AI assistants like Claude, GPT, and Openclaw call PPToGo tools directly โ€” no custom integration per runtime.

Authentication

All requests require an API key in the Authorization: Bearer pk_... header. Get a key from your dashboard.

Available tools

Quick start

curl https://pptogo.com/api/mcp \
  -H "Authorization: Bearer pk_agent_YOUR_KEY"
# Returns: { name, version, tools: [...] }

JSON-RPC interface

POST to /api/mcp with a JSON-RPC style body:

# List tools
curl -X POST https://pptogo.com/api/mcp \
  -H "Authorization: Bearer pk_agent_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"method":"list_tools"}'

# Call a tool
curl -X POST https://pptogo.com/api/mcp \
  -H "Authorization: Bearer pk_agent_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"method":"call_tool","params":{"name":"get_my_earnings"}}'

Need help? See the MCP tools & API integration guide or contact developer support.

Hi! I'm Pip ๐Ÿ‘‹
Ask me anything
โœ•
Pip