Scout your MongoDB databases with AI - safety features, live monitoring, and data quality
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mongo-scout": {
"args": [
"-y",
"mongo-scout-mcp",
"mongodb://localhost:27017",
"mydb"
],
"type": "stdio",
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Scout your MongoDB databases with AI - A production-ready Model Context Protocol server with built-in safety features, live monitoring, and data quality tools.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'mongo-scout-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked mongo-scout-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data
Query and manage PostgreSQL databases directly from AI assistants
Manage Supabase projects — databases, auth, storage, and edge functions
Zero-dependency, token-efficient database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP Security Weekly
Get CVE alerts and security updates for io.github.bluwork/mongo-scout-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Scout your MongoDB databases with AI - A production-ready Model Context Protocol server with built-in safety features, live monitoring, and data quality tools.
You ask:
"Anything unusual happening with order volume this month?"
Mongo Scout returns:
ordersStatistics (last 30 days)
| Metric | Value |
|---|---|
| Daily Average | 2,847 documents |
| Standard Deviation | 412 |
| Min / Max | 1,923 / 3,601 |
Anomalies Detected
Recommendations
That's detectVolumeAnomalies — one of 50 tools covering exploration, querying, diagnostics, monitoring, data quality, and safe writes.
claude mcp add mongo-scout -- npx -y mongo-scout-mcp mongodb://localhost:27017 mydb
Then ask: "What collections do I have and what do their schemas look like?"
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"mongo-scout": {
"command": "npx",
"args": ["-y", "mongo-scout-mcp", "mongodb://localhost:27017", "mydb"],
"type": "stdio"
}
}
}
Add to your MCP settings:
{
"mongo-scout": {
"command": "npx",
"args": ["-y", "mongo-scout-mcp", "mongodb://localhost:27017", "mydb"]
}
}
The server runs in read-only mode by default. For write operations, run a separate instance:
{
"mcpServers": {
"mongo-scout-readonly": {
"command": "npx",
"args": ["-y", "mongo-scout-mcp", "--read-only", "mongodb://localhost:27017", "mydb"],
"type": "stdio"
},
"mongo-scout-readwrite": {
"command": "npx",
"args": ["-y", "mongo-scout-mcp", "--read-write", "mongodb://localhost:27017", "mydb_dev"],
"type": "stdio"
}
}
}
listDatabases — all databases in the instancegetDatabaseStats — storage and performance statisticslistCollections — collections in the current databasegetCollectionStats — size, document count, index detailsinferSchema — schema inference from sampled documentsfind — query documents with filtering, sorting, projectionaggregate — run aggregation pipelinescount — count documents matching a querydistinct — unique values for a fieldtextSearch — full-text search across indexed fieldsexplainQuery — query execution plan analysisdetectVolumeAnomalies — unusual patterns in document volumeanalyzeQueryPerformance — query optimization using explain plansgetServerStatus — server performance metricsgetCurrentOperations — currently running operationsgetConnectionPoolStats — connection pool healthgetProfilerStats — profiler data and slow operationsgetLiveMetrics — real-time metrics with continuous updatesgetHottestCollections — collections with highest activity