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.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/321webmarketing/whatconverts-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server