5dive mcp for VS Code
io.github.5dive-ai/5dive-mcp
Expose the 5dive agent-fleet CLI (tasks, agents, digest) as stdio MCP tools.
client:VS Code
transport:stdio
runtime:npm
Install 5dive mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fivedive-sudo",
"description": "FIVEDIVE_SUDO",
"password": true
},
{
"type": "promptString",
"id": "fivedive-bin",
"description": "FIVEDIVE_BIN",
"password": true
},
{
"type": "promptString",
"id": "fivedive-timeout-ms",
"description": "FIVEDIVE_TIMEOUT_MS",
"password": true
}
],
"servers": {
"5dive-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@5dive/mcp"
],
"env": {
"FIVEDIVE_SUDO": "${input:fivedive-sudo}",
"FIVEDIVE_BIN": "${input:fivedive-bin}",
"FIVEDIVE_TIMEOUT_MS": "${input:fivedive-timeout-ms}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs