View as Markdown
Open in
將你的編程智能體連接至 ThunderPhone 文件
將 ThunderPhone 的唯讀文件 MCP 伺服器新增至 Claude Code、Codex、Cursor 或其他 Streamable HTTP MCP 用戶端。
ThunderPhone 提供一個公開、唯讀的文件 MCP 伺服器,網址如下:
https://thunderphone.com/docs/mcp無需 API 金鑰。當編碼智能體需要最新的 ThunderPhone 產品及 API 背景資訊,而無需將整套文件載入其提示內容時,可使用此伺服器。
加入 Claude Code
claude mcp add --transport http thunderphone-docs https://thunderphone.com/docs/mcp加入 Codex
當你只希望伺服器在特定受信任專案中可用時,請將以下內容加入 ~/.codex/config.toml,或該專案中的 .codex/config.toml:
[mcp_servers.thunderphone-docs]
url = "https://thunderphone.com/docs/mcp"加入 Cursor
將此伺服器加入專案中的 .cursor/mcp.json,或使用相應的全域 MCP 設定:
{
"mcpServers": {
"thunderphone-docs": {
"url": "https://thunderphone.com/docs/mcp"
}
}
}可用工具
| 工具 | 參數 | 回傳內容 |
|---|---|---|
list_pages | 無 | 每個英文文件頁面,包括其標題、Markdown URL 及說明。 |
search_docs | query | 最多 10 個按相關性排序的結果,包括說明及文字摘錄。 |
get_page | path | 一個英文文件頁面的原始 Markdown/MDX 原始碼。 |
三個工具均標示為唯讀。伺服器不會保留狀態,亦不包含任何客戶或機構資料。
測試連線
向你的用戶端提出以下要求:
Search the ThunderPhone docs for webhook signature verification, then show me
the relevant page and a minimal implementation checklist.你亦可以透過 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":{}}'