|
1168 | 1168 | ],
|
1169 | 1169 | "transport": "stdio"
|
1170 | 1170 | },
|
| 1171 | + "mongodb": { |
| 1172 | + "args": [], |
| 1173 | + "description": "A Model Context Protocol server for interacting with MongoDB Databases and MongoDB Atlas.", |
| 1174 | + "env_vars": [ |
| 1175 | + { |
| 1176 | + "description": "MongoDB connection string for direct database connections (optional, if not set, you'll need to call the connect tool before interacting with MongoDB data)", |
| 1177 | + "name": "MDB_MCP_CONNECTION_STRING", |
| 1178 | + "required": false, |
| 1179 | + "secret": true |
| 1180 | + }, |
| 1181 | + { |
| 1182 | + "description": "Atlas API client ID for authentication (required for running Atlas tools)", |
| 1183 | + "name": "MDB_MCP_API_CLIENT_ID", |
| 1184 | + "required": false, |
| 1185 | + "secret": true |
| 1186 | + }, |
| 1187 | + { |
| 1188 | + "description": "Atlas API client secret for authentication (required for running Atlas tools)", |
| 1189 | + "name": "MDB_MCP_API_CLIENT_SECRET", |
| 1190 | + "required": false, |
| 1191 | + "secret": true |
| 1192 | + }, |
| 1193 | + { |
| 1194 | + "description": "Atlas API base URL (default is https://cloud.mongodb.com/)", |
| 1195 | + "name": "MDB_MCP_API_BASE_URL", |
| 1196 | + "required": false |
| 1197 | + }, |
| 1198 | + { |
| 1199 | + "description": "MongoDB server address for direct connections (optional, used for connect tool)", |
| 1200 | + "name": "MDB_MCP_SERVER_ADDRESS", |
| 1201 | + "required": false |
| 1202 | + }, |
| 1203 | + { |
| 1204 | + "description": "MongoDB server port for direct connections (optional, used for connect tool)", |
| 1205 | + "name": "MDB_MCP_SERVER_PORT", |
| 1206 | + "required": false |
| 1207 | + }, |
| 1208 | + { |
| 1209 | + "description": "Folder to store logs (inside the container)", |
| 1210 | + "name": "MDB_MCP_LOG_PATH", |
| 1211 | + "required": false |
| 1212 | + }, |
| 1213 | + { |
| 1214 | + "description": "Comma-separated list of tool names, operation types, and/or categories of tools to disable", |
| 1215 | + "name": "MDB_MCP_DISABLED_TOOLS", |
| 1216 | + "required": false |
| 1217 | + }, |
| 1218 | + { |
| 1219 | + "description": "When set to true, only allows read and metadata operation types", |
| 1220 | + "name": "MDB_MCP_READ_ONLY", |
| 1221 | + "required": false |
| 1222 | + }, |
| 1223 | + { |
| 1224 | + "description": "When set to disabled, disables telemetry collection", |
| 1225 | + "name": "MDB_MCP_TELEMETRY", |
| 1226 | + "required": false |
| 1227 | + } |
| 1228 | + ], |
| 1229 | + "image": "mongodb/mongodb-mcp-server:latest", |
| 1230 | + "metadata": { |
| 1231 | + "last_updated": "2025-06-17T14:57:32-04:00", |
| 1232 | + "pulls": 92, |
| 1233 | + "stars": 239 |
| 1234 | + }, |
| 1235 | + "permissions": { |
| 1236 | + "network": { |
| 1237 | + "outbound": { |
| 1238 | + "allow_host": [], |
| 1239 | + "allow_port": [ |
| 1240 | + 443, |
| 1241 | + 27017, |
| 1242 | + 27018, |
| 1243 | + 27019, |
| 1244 | + 27020 |
| 1245 | + ], |
| 1246 | + "allow_transport": [ |
| 1247 | + "tcp" |
| 1248 | + ], |
| 1249 | + "insecure_allow_all": true |
| 1250 | + } |
| 1251 | + }, |
| 1252 | + "read": [], |
| 1253 | + "write": [] |
| 1254 | + }, |
| 1255 | + "repository_url": "https://github.com/mongodb-js/mongodb-mcp-server", |
| 1256 | + "tags": [ |
| 1257 | + "mongodb", |
| 1258 | + "mongo", |
| 1259 | + "atlas", |
| 1260 | + "database", |
| 1261 | + "data", |
| 1262 | + "query" |
| 1263 | + ], |
| 1264 | + "tools": [ |
| 1265 | + "atlas-list-orgs", |
| 1266 | + "atlas-list-projects", |
| 1267 | + "atlas-create-project", |
| 1268 | + "atlas-list-clusters", |
| 1269 | + "atlas-inspect-cluster", |
| 1270 | + "atlas-create-free-cluster", |
| 1271 | + "atlas-connect-cluster", |
| 1272 | + "atlas-inspect-access-list", |
| 1273 | + "atlas-create-access-list", |
| 1274 | + "atlas-list-db-users", |
| 1275 | + "atlas-create-db-user", |
| 1276 | + "atlas-list-alerts", |
| 1277 | + "connect", |
| 1278 | + "find", |
| 1279 | + "aggregate", |
| 1280 | + "count", |
| 1281 | + "insert-one", |
| 1282 | + "insert-many", |
| 1283 | + "create-index", |
| 1284 | + "update-one", |
| 1285 | + "update-many", |
| 1286 | + "rename-collection", |
| 1287 | + "delete-one", |
| 1288 | + "delete-many", |
| 1289 | + "drop-collection", |
| 1290 | + "drop-database", |
| 1291 | + "list-databases", |
| 1292 | + "list-collections", |
| 1293 | + "collection-indexes", |
| 1294 | + "collection-schema", |
| 1295 | + "collection-storage-size", |
| 1296 | + "db-stats" |
| 1297 | + ], |
| 1298 | + "transport": "stdio" |
| 1299 | + }, |
1171 | 1300 | "netbird": {
|
1172 | 1301 | "args": [
|
1173 | 1302 | "--transport",
|
|
0 commit comments