Give AI agents real phone numbers, messages, and voice calls via MCP.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"agentphone": {
"url": "https://mcp.agentphone.to/mcp",
"type": "streamable-http",
"headers": {
"Authorization": "Bearer your_api_key_here"
}
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Give AI agents real phone numbers, SMS, and voice calls via the Model Context Protocol.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'agentphone-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked agentphone-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / communication
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An autonomous agent that conducts deep research on any data using any LLM providers
MCP Security Weekly
Get CVE alerts and security updates for io.github.AgentPhone-AI/agentphone and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Give AI agents real phone numbers, SMS, and voice calls via the Model Context Protocol.
AgentPhone lets your AI agent buy phone numbers, send/receive SMS, and place voice calls — all through natural language in Cursor, Claude Desktop, or any MCP-compatible client.
Agents are the core concept — each agent gets its own phone numbers, voice personality, system prompt, and webhook. Think of an agent as a virtual team member with its own phone line. You can create agents for different purposes (support, sales, scheduling) and configure how they sound and behave on calls.
Sign up at agentphone.ai and create an API key from Settings.
Option A: Remote server (recommended)
Point your MCP client at the hosted endpoint — no install needed:
{
"mcpServers": {
"agentphone": {
"type": "streamable-http",
"url": "https://mcp.agentphone.ai/mcp",
"headers": {
"Authorization": "Bearer your_api_key_here"
}
}
}
}
Works with any MCP client that supports Streamable HTTP transport (Switchboard, remote agent platforms, etc.).
Option B: Local server (stdio)
Runs locally via npx — works with Cursor, Claude Desktop, Windsurf, and Claude Code:
Cursor: Settings > MCP or ~/.cursor/mcp.json
Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"agentphone": {
"command": "npx",
"args": ["-y", "agentphone-mcp"],
"env": {
"AGENTPHONE_API_KEY": "your_api_key_here"
}
}
}
}
Option C: Self-hosted HTTP server
Run your own HTTP MCP endpoint:
AGENTPHONE_API_KEY=your_api_key npx agentphone-mcp --http --port 3000
Then connect to http://localhost:3000/mcp.
Once configured, just ask your AI agent things like:
The server is built on the mcp-use server framework,
which owns the HTTP layer: Streamable HTTP, the SSE stream, session management,
and the OAuth discovery endpoints. npm start (or the Docker image) runs it as
an HTTP server on PORT (default 3000), reachable at /mcp.
https://mcp.agentphone.ai/mcpPORT=3000 npm start → http://localhost:3000/mcpMCP_OAUTH_CLIENT_ID / MCP_OAUTH_CLIENT_SECRET (a client
pre-registered with the AgentPhone AS).AGENTPHONE_API_KEY. Used as the
fallback credential when no OAuth token is present.The per-request access token is forwarded to the AgentPhone REST API, so the server stores no credentials.
| Var | Purpose |
|---|---|
PORT | HTTP port (default 3000) |
AGENTPHONE_API_KEY | Fallback API key when OAuth is off |
MCP_OAUTH_CLIENT_ID / MCP_OAUTH_CLIENT_SECRET | Enable OAuth; client pre-registered with the AgentPhone AS |
AGENTPHONE_BASE_URL | API base (default https://api.agentphone.ai) |
| `AGENTPHONE_OAUTH |