> For the complete documentation index, see [llms.txt](https://help.synamate.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.synamate.com/docs/synamate-modules/synamate-mcp-server.md).

# Synamate MCP Server

### Connecting AI Assistants via MCP

Our platform supports MCP (Model Context Protocol), letting AI assistants like Claude connect directly to your account to search, update, and automate your CRM data.

#### Endpoint

`https://services.leadconnectorhq.com/mcp/{client}/v2`

For Claude, use: `https://services.leadconnectorhq.com/mcp/anthropic/v2`

#### Authentication

Pick one method:

**Option 1: OAuth (recommended)**

1. Click Connect on the connector setup screen
2. Sign in with your account
3. Select the sub-account you want to connect
4. Approve the requested scopes

No tokens to create or manage. You can revoke access anytime from your account settings.

**Option 2: Private Integration Token (PIT)**

1. Go to Settings → Private Integrations
2. Click Create New Integration
3. Select the scopes you want to grant
4. Click Create Integration and copy the token
5. Add the token to your MCP client config:

```
{
  "mcpServers": {
    "leadconnector": {
      "url": "https://services.leadconnectorhq.com/mcp/anthropic/v2",
      "headers": {
        "Authorization": "Bearer YOUR_PIT_TOKEN"
      }
    }
  }
}
```

Note: OAuth gives access to a wider range of scopes than a PIT.

#### Setup (Claude.ai)

1. Go to Settings → Connectors → Add custom connector
2. Enter the endpoint URL above
3. Click Connect, sign in, and select your sub-account
4. Approve the requested scopes

#### Setup (ChatGPT)

A dedicated ChatGPT endpoint is coming soon. Until then, connect using the original endpoint:

1. In ChatGPT, go to Settings → Connectors (or Apps) → Advanced Settings
2. Enable Developer Mode
3. Click Create App / Add Connector
4. Set the MCP server URL to `https://services.leadconnectorhq.com/mcp/`
5. Choose your authentication method (OAuth or PIT, same as above)
6. Save and start a new chat to use the tools

Note: ChatGPT's Developer Mode is currently available on Plus and Pro plans.

#### What it can do

Once connected, your AI assistant can work with Contacts, Conversations, Opportunities, Calendars, Payments, Products, Invoices, Social Posts, Blogs, Emails, and Forms, all through natural language.

#### Notes

* Each connection is scoped to a single sub-account
* Access is limited to the scopes you approve
* Sensitive actions require confirmation before running
