WhatConverts MCP Server
Connects Claude to the WhatConverts API, enabling management of leads, accounts, profiles, tracking numbers, and recordings through natural language.
README
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 install
- Create your
.envfile from the example:
cp .env.example .env
- Edit
.envwith your WhatConverts API credentials:
API_TOKEN=your-token-here
API_SECRET=your-secret-here
- Build:
npm run build
Docker 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_SECRET
- Run it (reads credentials from your
.envfile):
docker run --rm -i --env-file .env whatconverts-mcp-server
See 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 |
List leads with filters (type, status, date range, source, etc.) |
get_lead |
Get a single lead by ID |
create_lead |
Create a new lead |
update_lead |
Update an existing lead |
Accounts
| Tool | Description |
|---|---|
list_accounts |
List all accounts |
get_account |
Get a single account by ID |
create_account |
Create a new account |
update_account |
Update an existing account |
delete_account |
Delete an account |
Profiles
| Tool | Description |
|---|---|
list_profiles |
List all profiles |
get_profile |
Get a single profile by ID |
create_profile |
Create a new profile |
update_profile |
Update an existing profile |
delete_profile |
Delete a profile |
Users & Roles
| Tool | Description |
|---|---|
list_users |
List all users (requires Master key) |
list_roles |
List all roles |
Tracking & Recordings
| Tool | Description |
|---|---|
list_tracking_numbers |
List all tracking phone numbers |
get_recording |
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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.