Skip to content

Commit 70c6db2

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for MONGODB_URI)
1 parent 9f930a4 commit 70c6db2

1 file changed

Lines changed: 20 additions & 12 deletions

File tree

servers/com.mongodb-mcp.json

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"description": "Connect to MongoDB databases and Atlas clusters. Query collections, inspect schemas, manage indexes, and run aggregation pipelines through the official MongoDB MCP server.",
77
"icon": "https://avatars.githubusercontent.com/u/11214950?v=4",
88
"schema_version": "2.1",
9-
"categories": ["database"],
10-
"tags": ["mongodb", "database", "nosql", "atlas", "aggregation", "collections", "documents"],
11-
9+
"categories": [
10+
"database"
11+
],
12+
"tags": [
13+
"mongodb",
14+
"database",
15+
"nosql",
16+
"atlas",
17+
"aggregation",
18+
"collections",
19+
"documents"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "mongodb-mcp-server@latest"],
24+
"args": [
25+
"-y",
26+
"mongodb-mcp-server@latest"
27+
],
1628
"env": {
1729
"MDB_MCP_CONNECTION_STRING": "${input:MONGODB_URI}"
1830
},
@@ -22,7 +34,7 @@
2234
"id": "MONGODB_URI",
2335
"label": "MongoDB Connection String",
2436
"description": "MongoDB connection URI for your database. Supports local instances, Atlas clusters, and replica sets.",
25-
"type": "password",
37+
"type": "text",
2638
"required": true,
2739
"secret": true,
2840
"placeholder": "mongodb+srv://username:password@cluster.mongodb.net/mydb",
@@ -35,31 +47,27 @@
3547
]
3648
}
3749
},
38-
3950
"auth": {
4051
"type": "none"
4152
},
42-
4353
"contributor": {
4454
"name": "MongoDB",
4555
"github": "mongodb-js",
4656
"url": "https://www.mongodb.com"
4757
},
48-
4958
"links": {
5059
"repository": "https://github.com/mongodb-js/mongodb-mcp-server",
5160
"homepage": "https://www.mongodb.com",
5261
"documentation": "https://www.mongodb.com/docs/mcp-server/get-started/"
5362
},
54-
55-
"platforms": ["all"],
56-
63+
"platforms": [
64+
"all"
65+
],
5766
"capabilities": {
5867
"tools": true,
5968
"resources": false,
6069
"prompts": false,
6170
"read_only_mode": false
6271
},
63-
6472
"changelog_url": "https://github.com/mongodb-js/mongodb-mcp-server/releases"
6573
}

0 commit comments

Comments
 (0)