From 8b111dee813c2b9a3ad6fe689a5af7f4df50839e Mon Sep 17 00:00:00 2001 From: georgeatparallel Date: Sun, 2 Aug 2026 04:14:28 -0700 Subject: [PATCH] docs: add Parallel Search MCP example Signed-off-by: georgeatparallel --- docs/mcp.md | 15 +++++++++++++++ docs/mcp_en.md | 15 +++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/docs/mcp.md b/docs/mcp.md index 73034a38..fef1cf3f 100644 --- a/docs/mcp.md +++ b/docs/mcp.md @@ -84,6 +84,21 @@ MCP 工具在 Deep Code 中的命名格式为 `mcp__<服务名>__<工具名>`, } ``` +### Parallel Search + +通过 `web_search` 和 `web_fetch` 工具提供实时网页搜索和 URL 内容提取。默认端点无需账户或 API Key;`mcp-remote` 会将远程 Streamable HTTP 服务器桥接为 stdio: + +```json +{ + "mcpServers": { + "parallel-search": { + "command": "npx", + "args": ["mcp-remote", "https://search.parallel.ai/mcp"] + } + } +} +``` + ### 文件系统 让 Deep Code 在指定目录中读写文件: diff --git a/docs/mcp_en.md b/docs/mcp_en.md index 03c4b30c..786a7518 100644 --- a/docs/mcp_en.md +++ b/docs/mcp_en.md @@ -84,6 +84,21 @@ Lets Deep Code control a browser for screenshots, page interactions, etc.: } ``` +### Parallel Search + +Adds live web search and URL fetching with the `web_search` and `web_fetch` tools. The default endpoint requires no account or API key; `mcp-remote` bridges the remote Streamable HTTP server to stdio: + +```json +{ + "mcpServers": { + "parallel-search": { + "command": "npx", + "args": ["mcp-remote", "https://search.parallel.ai/mcp"] + } + } +} +``` + ### File System Enables Deep Code to read and write files within a specified directory: