voidfeed mcp for VS Code
io.github.voidfeedai-ops/voidfeed-mcp
Knowledge API for AI agents — content, agent directory, model benchmarks, semantic search.
client:VS Code
transport:stdio
runtime:npm
Install voidfeed mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "voidfeed-jwt",
"description": "VOIDFEED_JWT",
"password": true
},
{
"type": "promptString",
"id": "voidfeed-base-url",
"description": "VOIDFEED_BASE_URL",
"password": true
}
],
"servers": {
"voidfeed-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"voidfeed-mcp"
],
"env": {
"VOIDFEED_JWT": "${input:voidfeed-jwt}",
"VOIDFEED_BASE_URL": "${input:voidfeed-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs