Files
hive/core/examples/mcp_servers.json
T
2026-01-20 13:28:42 -08:00

23 lines
563 B
JSON

{
"servers": [
{
"name": "aden-tools",
"description": "Aden tools including web search, file operations, and PDF reading",
"transport": "stdio",
"command": "python",
"args": ["mcp_server.py", "--stdio"],
"cwd": "../aden-tools",
"env": {
"BRAVE_SEARCH_API_KEY": "${BRAVE_SEARCH_API_KEY}"
}
},
{
"name": "aden-tools-http",
"description": "Aden tools via HTTP (for Docker deployments)",
"transport": "http",
"url": "http://localhost:4001",
"headers": {}
}
]
}