WhatConverts MCP Server
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
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