Couchbase MCP Server

Databasestdio
Репозиторий

Community-supported MCP server from the Couchbase ecosystem that lets AI assistants interact with data in Couchbase clusters and Capella. Exposes tools to browse scopes and collections, run SQL++ (N1QL) queries, and read or modify documents, with authentication and safety controls enforced by the server. Useful for conversational data exploration and operational queries against Couchbase.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

{
  "mcpServers": {
    "couchbase": {
      "command": "npx",
      "args": [],
      "env": {
        "CB_CONNECTION_STRING": "<YOUR_CB_CONNECTION_STRING>",
        "CB_USERNAME": "<YOUR_CB_USERNAME>",
        "CB_PASSWORD": "<YOUR_CB_PASSWORD>",
        "CB_BUCKET_NAME": "<YOUR_CB_BUCKET_NAME>"
      }
    }
  }
}

Инструменты (2)

run_sql_plus_plus_query

Execute a SQL++ (N1QL) query against the configured Couchbase bucket.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "SQL++ query to run"
    }
  }
}

get_document_by_id

Retrieve a document from a collection by its key.

{
  "type": "object",
  "required": [
    "scope",
    "collection",
    "document_id"
  ],
  "properties": {
    "scope": {
      "type": "string",
      "description": "Scope name"
    },
    "collection": {
      "type": "string",
      "description": "Collection name"
    },
    "document_id": {
      "type": "string",
      "description": "Key of the document to fetch"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Couchbase Ecosystem (@Couchbase-Ecosystem)
Репозиторий
https://github.com/Couchbase-Ecosystem/mcp-server-couchbase
Звёзды
0
Последнее обновление
12 июля 2026 г.