The Vapi MCP Server enables integration with Vapi APIs through the Model Context Protocol for managing:
Assistants: List, create, update, and retrieve assistants with customizable LLM, voice, transcriber, and first message configurations.
Calls: List, create, and retrieve calls, including scheduling outbound calls for immediate or future execution.
Phone Numbers: List and retrieve Vapi phone numbers.
Tools: List and retrieve Vapi tools.
Remote Connectivity: Connect to the server remotely using Server-Sent Events (SSE) for seamless integration.
Development & Testing: Supports local development with unit and end-to-end tests.
Allows the MCP server to be installed and run via NPX, making it easy to integrate Vapi's capabilities through the NPM package ecosystem.
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., "@Vapi MCP Servercall my appointment reminder assistant to schedule a follow-up for next week"
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.
Vapi MCP Server
Build AI voice assistants and phone agents with Vapi using the Model Context Protocol.
Claude Code Setup (Recommended)
The easiest way to get started. No API key needed - authenticate via browser on first use.
1. Add MCP Server
2. Install Skill (Optional)
The Vapi skill helps Claude guide you through building voice assistants:
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.
Related MCP server: MCP Server
Claude Desktop Setup
With OAuth (No API Key)
With API Key
If you prefer to use an API key directly, get one from the Vapi dashboard:
Remote Configuration
Connect to Vapi's hosted MCP server:
Example Usage
Create a Voice Assistant
Ask Claude:
Make an Outbound Call
Schedule a Future Call
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
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/mcpHeader:
Authorization: Bearer your_vapi_api_key_here
SSE (Deprecated)
URL:
https://mcp.vapi.ai/sseHeader:
Authorization: Bearer your_vapi_api_key_here
Available Tools
Assistants
Tool | Description |
| List all assistants |
| Get assistant by ID |
| Create new assistant |
| Update assistant |
| Delete assistant |
Calls
Tool | Description |
| List call history |
| Get call details |
| Start outbound call (immediate or scheduled) |
Phone Numbers
Tool | Description |
| List phone numbers |
| Get phone number details |
| Purchase new number |
| Update number settings |
| Release number |
Tools (Function Calling)
Tool | Description |
| List custom tools |
| Get tool details |
| Create tool for API integration |
| Update tool |
| Delete tool |
Authentication
Tool | Description |
| Start OAuth flow |
| Log out and clear credentials |