Bee — The Progressive Intelligence Engine for VS Code
io.github.cuilabs/bee
Bee — The Progressive Intelligence Engine: tiered LLM, 4 tools, hosted API, free tier.
client:VS Code
transport:stdio
runtime:pypi
Install Bee — The Progressive Intelligence Engine 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": {
"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