Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 在指定目录中读写文件:
Expand Down
15 changes: 15 additions & 0 deletions docs/mcp_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down