Poke Voice 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., "@Poke Voice MCP ServerCall +15551234567 to confirm appointment"
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.
Poke Voice MCP Server
A stateless TypeScript Model Context Protocol server that lets Poke trigger outbound AI phone calls through Vapi native telephony.
The server is designed for Poke Recipes: every installer supplies their own Vapi credentials, Poke passes those credentials at call time, and the backend uses them only for the current request. No API keys are hardcoded, stored, logged, or returned.
Highlights
Streamable HTTP MCP endpoint for web-hosted agents.
One tool:
trigger_outbound_call.Vapi-native outbound calls through
POST https://api.vapi.ai/call.Low-cost default model:
openai/gpt-4.1-nano.Realistic default voice: Vapi
Clara, version2.Dynamic
vapiApiKeyandvapiPhoneNumberIdtool arguments for Poke environments that do not forward setup prompts as headers.Sanitized structured logs with tracking IDs, user IDs, status, and destination last four digits only.
Vercel-ready serverless entrypoint.
Related MCP server: CallCenter.js MCP
Architecture
Poke
-> Streamable HTTP MCP request
-> /api/mcp on Vercel
-> MCP tool handler
-> Vapi /call
-> outbound phone callThe backend is stateless. Each MCP request contains the credentials and call configuration required to execute that single call.
See docs/architecture.md for the security model and request flow.
Tool Contract
trigger_outbound_call
{
"phoneNumber": "+15551234567",
"systemPrompt": "You are calling to confirm an appointment. Be concise and polite.",
"initialMessage": "Hi, this is the appointment assistant calling to confirm your visit.",
"vapiApiKey": "vapi_...",
"vapiPhoneNumberId": "..."
}Required fields:
phoneNumber: destination number in E.164 format.systemPrompt: assistant instructions for the call.vapiApiKey: Vapi API key for the installer making the call.vapiPhoneNumberId: Vapi phone number ID to use as the outbound caller.
Optional field:
initialMessage: first spoken message from the assistant.
Successful calls return structured JSON:
{
"ok": true,
"status": "created",
"trackingId": "call-id-from-vapi",
"provider": "vapi",
"message": "Outbound call initiated."
}Errors return ok: false with a stable error code, including:
missing_configurationinvalid_phone_numberauthentication_failedinvalid_call_requestvapi_request_failed
Local Development
Requirements:
Node.js 20+
Vapi API key
Vapi phone number ID
Install and build:
npm install
npm run buildRun the HTTP server:
npm run devLocal endpoints:
GET http://localhost:3000/health
POST http://localhost:3000/api/mcp
POST http://localhost:3000/api/vapi-webhookFor local-only testing, the server can fall back to environment variables when no credential headers are present:
cp .env.example .envVAPI_API_KEY=your_vapi_api_key
VAPI_PHONE_NUMBER_ID=your_vapi_phone_number_id
POKE_USER_ID=local-dev-userDo not use Vercel environment variables for a shared public Recipe unless you are intentionally running a private instance. Public Recipes should use installer-owned credentials passed by Poke.
Vercel Deployment
This repo includes:
api/index.ts: Vercel serverless adapter.vercel.json: rewrites for/api/mcp,/mcp,/health, and the Vapi webhook.
Deploy:
vercel
vercel --prodAfter deployment, your MCP endpoint is:
https://your-vercel-domain.vercel.app/api/mcpUpdate poke.recipe.yaml with your deployed endpoint before publishing the Recipe.
Poke Recipe
The included poke.recipe.yaml is a template for Poke Kitchen. It declares:
Streamable HTTP transport.
Setup prompts for a Vapi API key and Vapi phone number ID.
A confirmation prompt before
trigger_outbound_callruns.Billing and compliance warnings.
Poke should also pass x-poke-user-id on requests. The server uses that only for sanitized tracking logs.
Testing
See docs/testing.md for MCP smoke tests, live tools/list checks, and safe failure-mode tests.
At minimum, run:
npm run buildThen verify tools/list includes vapiApiKey and vapiPhoneNumberId; Poke will strip unregistered arguments if they are missing from the schema.
Compliance
This software can initiate real outbound phone calls. You are responsible for consent, TCPA compliance, local calling laws, Vapi billing, and any platform-specific usage rules.
The project intentionally does not bypass confirmation prompts, rate limits, provider compliance controls, or phone-number ownership requirements.
License
MIT
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
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/ionnes69/poke-voice-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server