ThunderPhone 2.0 is live.Self-serve, from 2¢/min.Read the announcement

Connect tools & data

Connect your coding agent to ThunderPhone docs

Add ThunderPhone

ThunderPhone exposes a public, read-only documentation MCP server at:

https://thunderphone.com/docs/mcp

It needs no API key. Use it when a coding agent needs current ThunderPhone product and API context without loading the entire documentation set into its prompt.

Add it to Claude Code

claude mcp add --transport http thunderphone-docs https://thunderphone.com/docs/mcp

Add it to Codex

Add this to ~/.codex/config.toml, or to .codex/config.toml in a trusted project when the server should only be available there:

[mcp_servers.thunderphone-docs]
url = "https://thunderphone.com/docs/mcp"

Add it to Cursor

Add this server to .cursor/mcp.json in a project, or use the equivalent global MCP settings:

{
  "mcpServers": {
    "thunderphone-docs": {
      "url": "https://thunderphone.com/docs/mcp"
    }
  }
}

Available tools

ToolArgumentsWhat it returns
list_pagesnoneEvery English documentation page with its title, Markdown URL, and description.
search_docsqueryUp to 10 ranked matches with descriptions and text snippets.
get_pagepathThe raw Markdown/MDX source for one English documentation page.

All three tools are marked read-only. The server is stateless and contains no customer or organization data.

Test the connection

Ask your client:

Search the ThunderPhone docs for webhook signature verification, then show me
the relevant page and a minimal implementation checklist.

You can also inspect the tool list over JSON-RPC:

curl -X POST https://thunderphone.com/docs/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'