deer-flow/extensions_config.example.json
George Pickett 9035934432
feat(mcp): add optional Parallel Search server (#5028)
* feat(mcp): add optional Parallel Search server

* docs(mcp): document Parallel Search opt-in and data sharing

* docs(mcp): address Parallel Search review feedback
2026-09-06 22:54:32 +08:00

93 lines
2.2 KiB
JSON

{
"middlewares": [],
"mcpInterceptors": [
"my_package.mcp.auth:build_auth_interceptor"
],
"mcpServers": {
"github": {
"enabled": false,
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_TOKEN": "$GITHUB_TOKEN"
},
"tool_name_prefix": true,
"session_init_timeout": 60,
"tool_call_timeout": 60,
"description": "GitHub MCP server for repository operations"
},
"parallel-search": {
"enabled": false,
"type": "http",
"url": "https://search.parallel.ai/mcp",
"description": "Optional anonymous Parallel Search tools for web search and fetching requested URLs"
},
"openviking": {
"enabled": false,
"type": "http",
"url": "http://127.0.0.1:1933/mcp",
"headers": {
"X-API-Key": "$OPENVIKING_API_KEY"
},
"description": "Official OpenViking tools for explicit memory and resource operations"
},
"postgres": {
"enabled": false,
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://localhost/mydb"
],
"env": {},
"description": "PostgreSQL database access",
"routing": {
"mode": "prefer",
"priority": 50,
"keywords": [
"database",
"SQL",
"table",
"订单",
"用户"
]
},
"tools": {
"query": {
"routing": {
"mode": "prefer",
"priority": 100,
"keywords": [
"查库",
"订单表",
"指标"
]
}
}
}
},
"long-running-reports": {
"enabled": false,
"type": "http",
"url": "https://reports.example.com/mcp",
"description": "Example ordinary MCP background-task contract",
"session_init_timeout": 60,
"tool_call_timeout": 60,
"task_toolsets": [
{
"name": "report-generation",
"submit_tool": "submit_report",
"status_tool": "get_report_status",
"cancel_tool": "cancel_report"
}
]
}
},
"skills": {}
}