Skip to content
VS Code

mcp bifrost for VS Code

io.github.fixembcn/mcp-bifrost

Delegate bulk code edits to a cheap worker model. Gated, atomic. PHP and Python.

client:VS Code transport:stdio runtime:pypi

Install mcp bifrost in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "deepseek-api-key",
      "description": "DEEPSEEK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bifrost-worker-base-url",
      "description": "BIFROST_WORKER_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bifrost-worker-model",
      "description": "BIFROST_WORKER_MODEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bifrost-db",
      "description": "BIFROST_DB",
      "password": true
    }
  ],
  "servers": {
    "mcp-bifrost": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-bifrost"
      ],
      "env": {
        "DEEPSEEK_API_KEY": "${input:deepseek-api-key}",
        "BIFROST_WORKER_BASE_URL": "${input:bifrost-worker-base-url}",
        "BIFROST_WORKER_MODEL": "${input:bifrost-worker-model}",
        "BIFROST_DB": "${input:bifrost-db}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp bifrost in other clients