Overview
The Partoo MCP Server implements the Model Context Protocol, a standard that lets AI assistants call external tools. It exposes the Partoo API as a set of ready-to-use tools so that LLMs like Claude can search businesses, reply to reviews, send messages, publish posts, and query analytics — all without writing a single line of integration code.The MCP server is stateless and proxies every request to the Partoo REST API on your behalf. No data is stored server-side.
Authentication
Every MCP request must include your Partoo API key in thex-APIKey header. The server forwards it to the Partoo API and never stores it.
Your Partoo API key. Refer to the API Keys guide to generate one.
Environments
| Environment | MCP Server URL |
|---|---|
| Production | https://mcp.partoo.co |
| Sandbox | https://mcp.sandbox.partoo.co |
Connect with your LLM
The Partoo MCP Server uses the Streamable HTTP transport (a singlePOST / endpoint). All major MCP-compatible clients support this transport.
Replace YOUR_API_KEY with your actual Partoo API key in the snippets below.
- Claude Desktop
- Claude Code
- Cursor
- Other clients
Edit Restart Claude Desktop after saving. The Partoo tools will appear in the tool picker.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):claude_desktop_config.json
Available tools
The server exposes 14 tools across 5 groups. See the Tools Reference for the full parameter list.| Group | Tools |
|---|---|
| Businesses | search_businesses, get_business, update_business |
| Reviews | search_reviews, reply_to_review, get_review_metrics |
| Messages | list_conversations, send_message, list_messages |
| Posts | create_post, search_posts |
| Analytics | get_profile_metrics, get_profile_keywords |