Plyto

Use Plyto from Claude, or any AI assistant

Plyto ships a hosted MCP server. Connect it once and your assistant can work your CRM directly: add contacts, move deals, draft emails and ad campaigns, pull reports: the same tools Plyto's own agent uses.

1Create an API key

In Plyto, open Settings → API keysand create a key. Keys are scoped to one business and inherit your role's permissions. Copy the key; it's shown once.

2Add the server to your client

Claude (claude.ai, desktop & mobile apps)

  1. Go to Settings → Connectors → Add custom connector.
  2. Server URL: https://plyto.ai/api/mcp
  3. Open Request headers and add a header named Authorization with the value Bearer YOUR_API_KEY, including the space after “Bearer”.
  4. Save, then enable the connector in any chat.

Claude Code

claude mcp add --transport http plyto https://plyto.ai/api/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"

Cursor, Windsurf, and other JSON-config clients

{
  "mcpServers": {
    "plyto": {
      "url": "https://plyto.ai/api/mcp",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}

Clients without native remote-server support

npx mcp-remote https://plyto.ai/api/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"

3Talk to your CRM

Ask your assistant things like “add the lead from this email thread to my CRM”, “which deals are stalled?”, or “draft a follow-up sequence for contacts tagged webinar”. The assistant sees the same contacts, pipelines, and reports you do.

Safety model

Protocol details

Streamable HTTP (JSON-RPC over POST) at https://plyto.ai/api/mcp. Protocol versions 2024-11-05 through 2025-06-18. Capabilities: tools. Auth: Authorization: Bearer plyto_at_…. The server is reachable from the public internet, including Anthropic's infrastructure for claude.ai connectors.

Questions? hello@plyto.ai · ← Back to plyto.ai