WhatConverts MCP Server

WhatConverts MCP Server

Connects Claude to the WhatConverts API, enabling management of leads, accounts, profiles, tracking numbers, and recordings through natural language.

Category
Visit Server

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

  1. Clone the repo and install dependencies:
git clone <repo-url>
cd whatconverts-mcp-server
npm install
  1. Create your .env file from the example:
cp .env.example .env
  1. Edit .env with your WhatConverts API credentials:
API_TOKEN=your-token-here
API_SECRET=your-secret-here
  1. Build:
npm run build

Docker Setup

If you prefer Docker, you can skip the Node.js install entirely.

  1. Build the image:
docker build -t whatconverts-mcp-server .
  1. Create your .env file (if you haven't already):
cp .env.example .env
# Edit .env with your API_TOKEN and API_SECRET
  1. Run it (reads credentials from your .env file):
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 .env file (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

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured