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
Claude Desktop connects to the Partoo server through a small helper called Fully quit and reopen Claude Desktop after saving (closing the window is not enough). The Partoo tools will then appear in the tool picker.
mcp-remote. You don’t need to install it by hand — the configuration below launches it automatically with npx.Before you start, install Node.js (the LTS version is fine). This provides the npx command used in the configuration. To confirm it’s installed, open a terminal and run node --version and npx --version — both should print a version number.Then edit ~/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 |