Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"botcall": {
"env": {
"BOTCALL_API_KEY": "bs_live_..."
},
"args": [
"-y",
"botcall-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server that gives AI agents real phone numbers. Provision a number, receive SMS, and extract verification codes — all through tool calls.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'botcall-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 botcall-mcp against OSV.dev.
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 communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
Email & SMS infrastructure for AI agents — send and receive real email and text messages programmatically
A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API
MCP Security Weekly
Get CVE alerts and security updates for io.github.danecodes/botcall-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server that gives AI agents real phone numbers. Provision a number, receive SMS, and extract verification codes — all through tool calls.
Built for Claude Desktop, Claude Code, and any MCP-compatible client.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"botcall": {
"command": "npx",
"args": ["-y", "botcall-mcp"],
"env": {
"BOTCALL_API_KEY": "bs_live_..."
}
}
}
}
claude mcp add botcall -- npx -y botcall-mcp
Then set your API key in the environment:
export BOTCALL_API_KEY="bs_live_..."
Any client that supports the MCP stdio transport works. Run npx botcall-mcp with BOTCALL_API_KEY set.
Sign up at botcall.io, pick a plan, and grab your key from Dashboard → API Keys.
provision_numberProvision a new phone number for receiving SMS.
| Parameter | Type | Description |
|---|---|---|
areaCode | string | Preferred area code, e.g. "206" (optional) |
country | string | ISO country code (default: "US") |
get_codeWait for an incoming SMS and extract the verification code. Long-polls until a message arrives or the timeout expires.
| Parameter | Type | Description |
|---|---|---|
timeout | number | Seconds to wait (default: 30, max: 30) |
numberId | string | Filter to a specific number (optional) |
get_inboxGet recent SMS messages received on your numbers.
| Parameter | Type | Description |
|---|---|---|
limit | number | Max messages to return (default: 10) |
numberId | string | Filter to a specific number (optional) |
list_numbersList all your provisioned phone numbers. No parameters.
release_numberRelease a phone number you no longer need.
| Parameter | Type | Description |
|---|---|---|
numberId | string | Required. The number ID to release |
get_usageGet your current plan, limits, and usage stats. No parameters.
You: Sign up for ExampleService using a phone number
Agent: I'll provision a number and handle the verification.
→ provision_number({ areaCode: "415" })
{ number: "+14155550123", id: "pn_abc123" }
→ [agent enters the number on ExampleService's signup page]
→ get_code({ numberId: "pn_abc123" })
Verification code: 847291
→ [agent enters 847291 to complete verification]
| Variable | Description |
|---|---|
BOTCALL_API_KEY | Required. Your API key from botcall.io |
BOTCALL_API_URL | API base URL (default: https://api.botcall.io) |
MIT