forkflux mcp for VS Code
io.github.forkflux/forkflux-mcp
Self-hosted multi-agent collaboration and audit layer for AI-assisted engineering teams
client:VS Code
transport:stdio
runtime:pypi
Install forkflux mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "forkflux-api-key",
"description": "FORKFLUX_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "forkflux-api-url",
"description": "FORKFLUX_API_URL",
"password": true
}
],
"servers": {
"forkflux-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"forkflux-mcp"
],
"env": {
"FORKFLUX_API_KEY": "${input:forkflux-api-key}",
"FORKFLUX_API_URL": "${input:forkflux-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