For AI agents
Connect Claude, ChatGPT, Cursor or any client that speaks the Model Context Protocol to live BubblyPhone data: calling rates, call cost estimates, pricing, the help centre and US number availability. Read-only, no account, no API key.
https://bubblyphone.com/mcpTransport: Streamable HTTP (JSON-RPC 2.0 over POST, stateless). Manifest: https://bubblyphone.com/.well-known/mcp
In Claude (web or desktop) open Settings โ Connectors โ Add custom connector, paste the endpoint URL above, and leave authentication empty. Then ask Claude anything about BubblyPhone rates or help.
Add to .cursor/mcp.json (or the equivalent MCP settings file):
{
"mcpServers": {
"bubblyphone": {
"url": "https://bubblyphone.com/mcp"
}
}
}One request, one answer. No session to open first:
curl -s https://bubblyphone.com/mcp \
-H 'Content-Type: application/json' -H 'Accept: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_calling_rate","arguments":{"destination":"Austria"}}}'| Tool | What it returns | Example prompt |
|---|---|---|
get_calling_rate | Per-minute price for a country, ISO code, or a full phone number. | โWhat does it cost to call Austria with BubblyPhone?โ |
list_calling_rates | Every country with its lowest and highest rate and dial code. | โWhich is cheaper to call, Poland or Portugal?โ |
estimate_call_cost | Cost of a call of a given length, plus the smallest top-up that covers it. | โHow much is a 20-minute call to +43 699 8136 2187?โ |
get_pricing | Top-up packages, number fees, transcription and translation prices. | โHow does BubblyPhone billing work?โ |
search_help | Search the help centre and get excerpts with links. | โWhy does my call say busy?โ |
get_help_article | The full text of one help article by slug. | โShow me the refund policy.โ |
search_available_numbers | US local numbers available right now by area code, state or city. | โIs a 561 area code number available?โ |
Not for emergency calls, not for sending SMS verification codes, and not for building automated AI voice agents. That last one is a separate product at agents.bubblyphone.com.
Prefer plain files? The same data is at /pricing.md, /rates.md and /help-md/index.md, and the site index for agents is /llms.txt. Questions: contact us.