Bhived MCP for VS Code
io.github.artkeyai/bhived-mcp
Shared knowledge graph, skills, and tool discovery for AI agents through the Model Context Protocol.
client:VS Code
transport:stdio
runtime:npm
Install Bhived MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bhived-api-key",
"description": "BHIVED_API_KEY",
"password": true
}
],
"servers": {
"bhived-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"bhived-mcp"
],
"env": {
"BHIVED_API_KEY": "${input:bhived-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs