// may the 4th be with you⚔️
communicationai-ml

Vapi MCP Server

by VapiAI

Vapi MCP Server enables Vapi integration via the Model Context Protocol, providing function-calling AI API access so mod

Enables integration with Vapi APIs through function calling via the Model Context Protocol, allowing AI models to access Vapi's capabilities.

github stars

37

0 commentsdiscussion

Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.

OAuth authentication - no API key requiredRemote hosted option availableIncludes guided skill for Claude

best for

  • / Developers building voice-enabled applications
  • / Creating customer service phone bots
  • / Prototyping conversational AI experiences

capabilities

  • / Create AI voice assistants
  • / Build phone agents
  • / Manage Vapi API resources
  • / Configure voice assistant settings
  • / Deploy voice applications

what it does

Connects AI models to Vapi's voice assistant and phone agent APIs through the Model Context Protocol. Lets you build and manage AI-powered voice applications directly from Claude or other MCP-compatible tools.

about

Vapi MCP Server is an official MCP server published by VapiAI that provides AI assistants with tools and capabilities via the Model Context Protocol. Vapi MCP Server enables Vapi integration via the Model Context Protocol, providing function-calling AI API access so mod It is categorized under communication, ai ml.

how to install

You can install Vapi MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

license

MIT

Vapi MCP Server is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

readme

Vapi MCP Server

smithery badge

Build AI voice assistants and phone agents with Vapi using the Model Context Protocol.

<a href="https://glama.ai/mcp/servers/@VapiAI/mcp-server"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@VapiAI/mcp-server/badge" alt="Vapi Server MCP server" /> </a>

Claude Code Setup (Recommended)

The easiest way to get started. No API key needed - authenticate via browser on first use.

1. Add MCP Server

claude mcp add vapi -- npx -y @vapi-ai/mcp-server

2. Install Skill (Optional)

The Vapi skill helps Claude guide you through building voice assistants:

mkdir -p ~/.claude/skills/vapi
curl -o ~/.claude/skills/vapi/SKILL.md https://raw.githubusercontent.com/VapiAI/mcp-server/main/skill/SKILL.md

3. Restart Claude Code

After restarting, use /vapi or ask Claude to help build a voice assistant. On first use, you'll be prompted to sign in via browser - no API key copy-paste needed.


Claude Desktop Setup

With OAuth (No API Key)

{
  "mcpServers": {
    "vapi": {
      "command": "npx",
      "args": ["-y", "@vapi-ai/mcp-server"]
    }
  }
}

With API Key

If you prefer to use an API key directly, get one from the Vapi dashboard:

{
  "mcpServers": {
    "vapi": {
      "command": "npx",
      "args": ["-y", "@vapi-ai/mcp-server"],
      "env": {
        "VAPI_TOKEN": "<your_vapi_token>"
      }
    }
  }
}

Remote Configuration

Connect to Vapi's hosted MCP server:

{
  "mcpServers": {
    "vapi": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.vapi.ai/mcp",
        "--header",
        "Authorization: Bearer ${VAPI_TOKEN}"
      ],
      "env": {
        "VAPI_TOKEN": "<your_vapi_token>"
      }
    }
  }
}

Example Usage

Create a Voice Assistant

Ask Claude:

I want to build a voice assistant that can schedule appointments

Make an Outbound Call

Call +1234567890 using my appointment reminder assistant with these details:
- Customer name: Sarah Johnson
- Appointment date: March 25th
- Appointment time: 2:30 PM

Schedule a Future Call

Schedule a call with my support assistant for next Tuesday at 3:00 PM to +1555123456

Using Variable Values in Assistant Prompts

The create_call action supports passing dynamic variables through assistantOverrides.variableValues. Use double curly braces in your assistant's prompts: {{variableName}}.

Example Prompt with Variables

Hello {{customerName}}, this is a reminder about your appointment on {{appointmentDate}} at {{appointmentTime}} with {{doctorName}}.

Default Variables

These are automatically available (no need to pass):

  • {{now}} - Current date and time (UTC)
  • {{date}} - Current date (UTC)
  • {{time}} - Current time (UTC)
  • {{month}} - Current month (UTC)
  • {{day}} - Current day of month (UTC)
  • {{year}} - Current year (UTC)
  • {{customer.number}} - Customer's phone number

See Vapi documentation for advanced date/time formatting.


Remote MCP Server

Connect to Vapi's hosted MCP server from any MCP client:

Streamable HTTP (Recommended)

  • URL: https://mcp.vapi.ai/mcp
  • Header: Authorization: Bearer your_vapi_api_key_here

SSE (Deprecated)

  • URL: https://mcp.vapi.ai/sse
  • Header: Authorization: Bearer your_vapi_api_key_here

Available Tools

Assistants

ToolDescription
vapi_list_assistantsList all assistants
vapi_get_assistantGet assistant by ID
vapi_create_assistantCreate new assistant
vapi_update_assistantUpdate assistant
vapi_delete_assistantDelete assistant

Calls

ToolDescription
vapi_list_callsList call history
vapi_get_callGet call details
vapi_create_callStart outbound call (immediate or scheduled)

Phone Numbers

ToolDescription
vapi_list_phone_numbersList phone numbers
vapi_get_phone_numberGet phone number details
vapi_buy_phone_numberPurchase new number
vapi_update_phone_numberUpdate number settings
vapi_delete_phone_numberRelease number

Tools (Function Calling)

ToolDescription
vapi_list_toolsList custom tools
vapi_get_toolGet tool details
vapi_create_toolCreate tool for API integration
vapi_update_toolUpdate tool
vapi_delete_toolDelete tool

Authentication

ToolDescription
vapi_loginStart OAuth flow
vapi_logoutLog out and clear credentials

Development

# Install dependencies
npm install

# Build
npm run build

# Test with MCP inspector
npm run inspector

Local Development Config

{
  "mcpServers": {
    "vapi-local": {
      "command": "node",
      "args": ["<path>/dist/index.js"],
      "env": {
        "VAPI_TOKEN": "<your_vapi_token>"
      }
    }
  }
}

Testing

# Unit tests (mocked)
npm run test:unit

# E2E tests (requires VAPI_TOKEN)
export VAPI_TOKEN=your_token_here
npm run test:e2e

# All tests
npm test

References

FAQ

What is the Vapi MCP Server MCP server?
Vapi MCP Server is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
How do MCP servers relate to agent skills?
Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
How are reviews shown for Vapi MCP Server?
This profile displays 74 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.7 out of 5—verify behavior in your own environment before production use.

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
MCP server reviews

Ratings

4.774 reviews
  • Ira Khan· Dec 28, 2024

    Vapi MCP Server has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.

  • Shikha Mishra· Dec 12, 2024

    We wired Vapi MCP Server into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • Ira Nasser· Dec 4, 2024

    Vapi MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.

  • Daniel Rao· Dec 4, 2024

    I recommend Vapi MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

  • Valentina Verma· Dec 4, 2024

    According to our notes, Vapi MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Amina Shah· Dec 4, 2024

    Vapi MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • Aisha Rao· Nov 23, 2024

    We wired Vapi MCP Server into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • Kofi Shah· Nov 23, 2024

    Strong directory entry: Vapi MCP Server surfaces stars and publisher context so we could sanity-check maintenance before adopting.

  • Chen Johnson· Nov 23, 2024

    Useful MCP listing: Vapi MCP Server is the kind of server we cite when onboarding engineers to host + tool permissions.

  • Michael Agarwal· Nov 23, 2024

    We evaluated Vapi MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.

showing 1-10 of 74

1 / 8