SearchHub for VS Code
io.github.woodcoal/searchhub
Aggregate Serper, Tavily, Exa and AnySearch behind one MCP-ready API with key rotation and quotas.
client:VS Code
transport:stdio
runtime:npm
Install SearchHub in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "searchhub-home",
"description": "SEARCHHUB_HOME",
"password": true
},
{
"type": "promptString",
"id": "searchhub-secret",
"description": "SEARCHHUB_SECRET",
"password": true
}
],
"servers": {
"searchhub": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"searchhub"
],
"env": {
"SEARCHHUB_HOME": "${input:searchhub-home}",
"SEARCHHUB_SECRET": "${input:searchhub-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs