Bee by HEOSSI for VS Code
io.github.heossihq/bee-public
Bee by HEOSSI: governed multimodal intelligence - chat, code, security, research, documents, memory.
client:VS Code
transport:stdio
runtime:pypi
Install Bee by HEOSSI in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bee-api-key",
"description": "BEE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "bee-model",
"description": "BEE_MODEL",
"password": true
},
{
"type": "promptString",
"id": "bee-api-url",
"description": "BEE_API_URL",
"password": true
}
],
"servers": {
"bee-public": {
"type": "stdio",
"command": "uvx",
"args": [
"bee-sdk"
],
"env": {
"BEE_API_KEY": "${input:bee-api-key}",
"BEE_MODEL": "${input:bee-model}",
"BEE_API_URL": "${input:bee-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs