deer-flow/extensions_config.example.json
Hao Zhe a263af2845
feat(mcp): add official OpenViking tools integration (#4745)
* feat(mcp): add OpenViking tools integration

* fix(mcp): warn on ineffective tool overrides

* docs(mcp): clarify OpenViking resource removal

* fix(mcp): expose native OpenViking forget tool

* docs(mcp): document OpenViking forget guardrail
2026-08-11 13:56:02 +08:00

71 lines
1.5 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"
},
"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": [
"查库",
"订单表",
"指标"
]
}
}
}
}
},
"skills": {}
}