-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.mongodb-mcp-npx.json
More file actions
104 lines (104 loc) · 3.96 KB
/
Copy pathcom.mongodb-mcp-npx.json
File metadata and controls
104 lines (104 loc) · 3.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.mongodb-mcp-npx",
"name": "MongoDB (npx)",
"alias": "mongodb",
"description": "Connect to MongoDB databases and Atlas clusters. Query collections, inspect schemas, manage indexes, and run aggregation pipelines through the official MongoDB MCP server.",
"icon": "https://avatars.githubusercontent.com/u/11214950?v=4",
"schema_version": "2.1",
"categories": [
"database"
],
"tags": [
"mongodb",
"database",
"nosql",
"atlas",
"aggregation",
"collections",
"documents"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mongodb-mcp-server@latest"
],
"env": {
"MDB_MCP_CONNECTION_STRING": "${input:MDB_MCP_CONNECTION_STRING}",
"MDB_MCP_API_CLIENT_ID": "${input:MDB_MCP_API_CLIENT_ID}",
"MDB_MCP_API_CLIENT_SECRET": "${input:MDB_MCP_API_CLIENT_SECRET}"
},
"metadata": {
"inputs": [
{
"id": "MDB_MCP_CONNECTION_STRING",
"label": "MongoDB Connection String",
"description": "MongoDB connection URI for your database. Supports local instances, Atlas clusters, and replica sets. Leave empty to use the runtime connect tool.",
"type": "text",
"required": false,
"secret": true,
"placeholder": "mongodb+srv://username:password@cluster.mongodb.net/mydb",
"obtain": {
"url": "https://www.mongodb.com/docs/manual/reference/connection-string/",
"instructions": "1. For MongoDB Atlas: Go to your cluster > Connect > Drivers\n2. Copy the connection string\n3. Replace <password> with your database password\n4. For local MongoDB: use mongodb://localhost:27017/mydb",
"button_label": "Learn More"
}
},
{
"id": "MDB_MCP_API_CLIENT_ID",
"label": "Atlas API Client ID",
"description": "MongoDB Atlas Service Account client ID for Atlas management operations (create clusters, manage users, IP access lists). Optional — only needed for Atlas administration.",
"type": "text",
"required": false,
"secret": true,
"placeholder": "mdb_sa_id_...",
"obtain": {
"url": "https://www.mongodb.com/docs/atlas/configure-api-access/",
"instructions": "1. Go to MongoDB Atlas > Organization Settings > Service Accounts\n2. Create a new Service Account with required roles\n3. Copy the Client ID",
"button_label": "Configure API Access"
}
},
{
"id": "MDB_MCP_API_CLIENT_SECRET",
"label": "Atlas API Client Secret",
"description": "MongoDB Atlas Service Account client secret. Required when Atlas API Client ID is provided.",
"type": "text",
"required": false,
"secret": true,
"placeholder": "mdb_sa_sk_...",
"obtain": {
"url": "https://www.mongodb.com/docs/atlas/configure-api-access/",
"instructions": "1. Go to MongoDB Atlas > Organization Settings > Service Accounts\n2. Create or select a Service Account\n3. Copy the Client Secret (shown only once at creation)",
"button_label": "Configure API Access"
}
}
]
}
},
"auth": {
"type": "optional_api_key",
"instructions": "Connection string provides database access. Atlas API credentials (optional) enable cluster management features."
},
"contributor": {
"name": "MongoDB",
"github": "mongodb-js",
"url": "https://www.mongodb.com"
},
"links": {
"repository": "https://github.com/mongodb-js/mongodb-mcp-server",
"homepage": "https://www.mongodb.com",
"documentation": "https://www.mongodb.com/docs/mcp-server/get-started/"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": true
},
"changelog_url": "https://github.com/mongodb-js/mongodb-mcp-server/releases"
}