Skip to main content

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 the x-APIKey header. The server forwards it to the Partoo API and never stores it.
x-APIKey
string
required
Your Partoo API key. Refer to the API Keys guide to generate one.
Keep your API key secret. Do not commit it to source control — use your LLM client’s secret/environment variable mechanism instead.

Environments

EnvironmentMCP Server URL
Productionhttps://mcp.partoo.co
Sandboxhttps://mcp.sandbox.partoo.co
Start with the Sandbox URL to test your setup safely before switching to Production.

Connect with your LLM

The Partoo MCP Server uses the Streamable HTTP transport (a single POST / endpoint). All major MCP-compatible clients support this transport. Replace YOUR_API_KEY with your actual Partoo API key in the snippets below.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
claude_desktop_config.json
{
  "mcpServers": {
    "partoo": {
      "type": "http",
      "url": "https://mcp.partoo.co",
      "headers": {
        "x-APIKey": "YOUR_API_KEY"
      }
    }
  }
}
Restart Claude Desktop after saving. The Partoo tools will appear in the tool picker.

Available tools

The server exposes 14 tools across 5 groups. See the Tools Reference for the full parameter list.
GroupTools
Businessessearch_businesses, get_business, update_business
Reviewssearch_reviews, reply_to_review, get_review_metrics
Messageslist_conversations, send_message, list_messages
Postscreate_post, search_posts
Analyticsget_profile_metrics, get_profile_keywords