rchanllc/joltsms-mcp-server
MCP server for JoltSMS — provision real-SIM US phone numbers and receive SMS/OTP codes
Platform-specific configuration:
{
"mcpServers": {
"joltsms-mcp-server": {
"command": "npx",
"args": [
"-y",
"joltsms-mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
MCP server for JoltSMS — provision dedicated real-SIM US phone numbers and receive SMS/OTP codes through AI agents.
Built on the Model Context Protocol, this server gives AI agents (Claude Code, Claude Desktop, Cursor, etc.) the ability to rent phone numbers, wait for incoming SMS, extract OTP codes, and manage billing — all through standardized tool calls.
Create a JoltSMS account and generate an API key at [Dashboard → Settings → API Keys](https://app.joltsms.com/settings).
Add to your .mcp.json (Claude Code) or MCP settings (Claude Desktop, Cursor):
{
"mcpServers": {
"joltsms": {
"command": "npx",
"args": ["-y", "@joltsms/mcp-server"],
"env": {
"JOLTSMS_API_KEY": "jolt_sk_your_key_here"
}
}
}
}Your AI agent now has access to all JoltSMS tools. Try:
> "Provision a new phone number with area code 650 and wait for an OTP"
| Tool | Description | |------|-------------| | joltsms_list_numbers | List active numbers with service labels, tags, and unread counts | | joltsms_get_number | Full details for a single number | | joltsms_update_number | Set service label, tags, or notes on a number | | joltsms_provision_number | Rent a new dedicated real-SIM US number ($50/mo) | | joltsms_release_number | Cancel/release a number at end of billing period | | joltsms_list_messages | List recent SMS with parsed OTP codes | | joltsms_mark_read | Mark single or bulk messages as read | | joltsms_wait_for_sms | Poll until an SMS arrives (key tool for OTP flows) | | joltsms_get_latest_otp | Get the most recent parsed verification code | | joltsms_billing_status | Check all subscriptions with billing health |
The most common use case — automated phone verification:
1. joltsms_provision_numLoading reviews...