View as Markdown
Open in
Connect your coding agent to ThunderPhone docs
Add ThunderPhone
ThunderPhone exposes a public, read-only documentation MCP server at:
https://thunderphone.com/docs/mcpIt 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/mcpAdd 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
| Tool | Arguments | What it returns |
|---|---|---|
list_pages | none | Every English documentation page with its title, Markdown URL, and description. |
search_docs | query | Up to 10 ranked matches with descriptions and text snippets. |
get_page | path | The 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":{}}'