Skip to content

Commit 6e38f80

Browse files
committed
Add Couchbase MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 2fd91f8 commit 6e38f80

1 file changed

Lines changed: 93 additions & 0 deletions

File tree

servers/com.couchbase-mcp-uvx.json

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.couchbase-mcp-uvx",
4+
"name": "Couchbase (uvx)",
5+
"alias": "couchbase",
6+
"description": "Interact with Couchbase clusters. Explore buckets, scopes, and collections, run SQL++ queries, perform document CRUD, and manage indexes through natural language.",
7+
"logo": "https://avatars.githubusercontent.com/u/605755?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"database"
11+
],
12+
"tags": [
13+
"couchbase",
14+
"database",
15+
"nosql",
16+
"document-database",
17+
"sql++",
18+
"n1ql",
19+
"capella"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "uvx",
24+
"args": [
25+
"couchbase-mcp-server"
26+
],
27+
"env": {
28+
"CB_CONNECTION_STRING": "${input:CB_CONNECTION_STRING}",
29+
"CB_USERNAME": "${input:CB_USERNAME}",
30+
"CB_PASSWORD": "${input:CB_PASSWORD}"
31+
},
32+
"metadata": {
33+
"inputs": [
34+
{
35+
"id": "CB_CONNECTION_STRING",
36+
"label": "Connection String",
37+
"description": "Connection string to the Couchbase cluster. Use the couchbases:// scheme for TLS (required for Capella).",
38+
"type": "text",
39+
"required": true,
40+
"secret": false,
41+
"placeholder": "couchbases://cb.xxxx.cloud.couchbase.com",
42+
"obtain": {
43+
"url": "https://cloud.couchbase.com/",
44+
"instructions": "1. Sign in to Couchbase Capella\n2. Open your cluster\n3. Go to Connect\n4. Copy the connection string (couchbases://...)",
45+
"button_label": "Open Capella"
46+
}
47+
},
48+
{
49+
"id": "CB_USERNAME",
50+
"label": "Username",
51+
"description": "Database access username with access to the required buckets (basic authentication).",
52+
"type": "text",
53+
"required": true,
54+
"secret": false,
55+
"placeholder": "username"
56+
},
57+
{
58+
"id": "CB_PASSWORD",
59+
"label": "Password",
60+
"description": "Password for basic authentication.",
61+
"type": "text",
62+
"required": true,
63+
"secret": true,
64+
"placeholder": "****************"
65+
}
66+
]
67+
}
68+
},
69+
"auth": {
70+
"type": "api_key",
71+
"instructions": "Create a database access credential (username and password) in Couchbase Capella, then provide the cluster connection string."
72+
},
73+
"contributor": {
74+
"name": "Couchbase",
75+
"github": "Couchbase-Ecosystem",
76+
"url": "https://www.couchbase.com"
77+
},
78+
"links": {
79+
"repository": "https://github.com/Couchbase-Ecosystem/mcp-server-couchbase",
80+
"homepage": "https://www.couchbase.com",
81+
"documentation": "https://mcp-server.couchbase.com/"
82+
},
83+
"platforms": [
84+
"all"
85+
],
86+
"capabilities": {
87+
"tools": true,
88+
"resources": false,
89+
"prompts": false,
90+
"read_only_mode": true
91+
},
92+
"changelog_url": "https://github.com/Couchbase-Ecosystem/mcp-server-couchbase/releases"
93+
}

0 commit comments

Comments
 (0)