Skip to content
VS Code

couchbase guru for VS Code

io.github.couchbase-ecosystem/couchbase-guru

Search the Couchbase documentation from your MCP client via a hosted documentation agent.

client:VS Code transport:stdio runtime:pypi

Install couchbase guru in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cb-mcp-transport",
      "description": "CB_MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cb-mcp-host",
      "description": "CB_MCP_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cb-mcp-port",
      "description": "CB_MCP_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cb-agent-base-url",
      "description": "CB_AGENT_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cb-agent-ip-salt",
      "description": "CB_AGENT_IP_SALT",
      "password": true
    }
  ],
  "servers": {
    "couchbase-guru": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "couchbase-guru"
      ],
      "env": {
        "CB_MCP_TRANSPORT": "${input:cb-mcp-transport}",
        "CB_MCP_HOST": "${input:cb-mcp-host}",
        "CB_MCP_PORT": "${input:cb-mcp-port}",
        "CB_AGENT_BASE_URL": "${input:cb-agent-base-url}",
        "CB_AGENT_IP_SALT": "${input:cb-agent-ip-salt}"
      }
    }
  }
}

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

couchbase guru in other clients