WhatConverts MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@WhatConverts MCP Servershow me leads from yesterday"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
WhatConverts MCP Server
An MCP (Model Context Protocol) server that connects Claude to the WhatConverts API, giving Claude access to your leads, accounts, profiles, tracking numbers, and more.
Prerequisites
Node.js 18+
A WhatConverts Master Account API Key (requires Agency plan)
Generate one from Master Account > Master Integrations in WhatConverts
Related MCP server: GoHighLevel MCP Server
Setup
Clone the repo and install dependencies:
git clone <repo-url>
cd whatconverts-mcp-server
npm installCreate your
.envfile from the example:
cp .env.example .envEdit
.envwith your WhatConverts API credentials:
API_TOKEN=your-token-here
API_SECRET=your-secret-hereBuild:
npm run buildDocker Setup
If you prefer Docker, you can skip the Node.js install entirely.
Build the image:
docker build -t whatconverts-mcp-server .Create your
.envfile (if you haven't already):
cp .env.example .env
# Edit .env with your API_TOKEN and API_SECRETRun it (reads credentials from your
.envfile):
docker run --rm -i --env-file .env whatconverts-mcp-serverSee the Configuration section below for how to wire this into Claude Code or Claude Desktop.
Configuration
Claude Code
Add to ~/.claude/settings.json:
{
"mcpServers": {
"whatconverts": {
"command": "node",
"args": ["/absolute/path/to/whatconverts-mcp-server/dist/index.js"]
}
}
}Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"whatconverts": {
"command": "node",
"args": ["/absolute/path/to/whatconverts-mcp-server/dist/index.js"]
}
}
}Claude Code (Docker)
Add to ~/.claude/settings.json:
{
"mcpServers": {
"whatconverts": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--env-file",
"/absolute/path/to/whatconverts-mcp-server/.env",
"whatconverts-mcp-server"
]
}
}
}Claude Desktop (Docker)
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"whatconverts": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--env-file",
"/absolute/path/to/whatconverts-mcp-server/.env",
"whatconverts-mcp-server"
]
}
}
}Then restart Claude Code or Claude Desktop.
Available Tools
Leads
Tool | Description |
| List leads with filters (type, status, date range, source, etc.) |
| Get a single lead by ID |
| Create a new lead |
| Update an existing lead |
Accounts
Tool | Description |
| List all accounts |
| Get a single account by ID |
| Create a new account |
| Update an existing account |
| Delete an account |
Profiles
Tool | Description |
| List all profiles |
| Get a single profile by ID |
| Create a new profile |
| Update an existing profile |
| Delete a profile |
Users & Roles
Tool | Description |
| List all users (requires Master key) |
| List all roles |
Tracking & Recordings
Tool | Description |
| List all tracking phone numbers |
| Get a call recording for a lead |
API Rate Limits
Master Account API Key: 10,000 requests per day
Concurrency: Up to 20 concurrent requests
Security
Never commit your
.envfile (it's in.gitignore)Share credentials via a password manager, not Slack/email
Ideally, each team member should use their own API key
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Connect Claude to Fathom meeting recordings, transcripts, and summaries
- platform7nOAuthtech.p7n
Connect Claude to your Platform7n workspaces — chat, links, and tasks. One-click OAuth.
GA4, Google Ads and Search Console in Claude. Read-only OAuth, multi-account for agencies.
Connects AI assistants to CloudQuell multi-cloud and AI cost, savings, anomaly, and budget data.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables Claude to manage GoHighLevel CRM contacts, pipelines, and workflows through natural language commands.21MIT
- AlicenseNot gradedqualityDmaintenanceConnects Claude Code with GoHighLevel CRM to manage contacts, pipelines, calendars, conversations, workflows, funnels, and forms via natural language.MIT
- AlicenseNot gradedqualityBmaintenanceConnects Claude to your Grinfi.io account, enabling management of contacts, automations, messages, and more through natural language.1MIT

theLeadRouter MCPofficial
AlicenseNot gradedqualityDmaintenanceConnects Claude Code to the theLeadRouter lead routing platform, enabling lead management, routing, and reporting via API.111MIT