This MCP server, developed by kiliczsh, provides AI assistants like Claude with read-only access to MongoDB databases. It offers tools for querying collections, retrieving schema information, and executing aggregations. The server integrates seamlessly with Claude Desktop on both macOS and Windows, enabling AI-powered data analysis and insights. By bridging AI capabilities with MongoDB's flexible document model, this implementation facilitates natural language interactions with complex datasets. It is particularly useful for scenarios requiring data exploration, schema analysis, or generating insights from MongoDB-stored data in AI-assisted research, reporting, and decision-making applications.
Execute MongoDB queries. Parameters: collection (string), filter (object), projection (optional object), limit (optional number), explain (optional string)
Run aggregation pipelines. Parameters: collection (string), pipeline (array of objects), explain (optional string)
Count matching documents. Parameters: collection (string), query (object)
Modify documents. Parameters: collection (string), filter (object), update (object), upsert (optional boolean), multi (optional boolean)
Add new documents. Parameters: collection (string), documents (array of objects)
Create collection indexes. Parameters: collection (string), indexes (array of objects)
Get MongoDB server details. Parameters: includeDebugInfo (optional boolean)
No reviews yet. Be the first to review!
Sign in to join the conversation
Start the server with node to access it via any client or IDE.
node path/to/downloaded/file.mjs