Legacy Mongodb
FreeNot checkedProvides read-only access to legacy MongoDB instances (<4.0) via the Model Context Protocol, enabling AI models to query databases, collections, and run aggrega
About
Provides read-only access to legacy MongoDB instances (<4.0) via the Model Context Protocol, enabling AI models to query databases, collections, and run aggregations safely.
README
A Model Context Protocol (MCP) server specifically designed for legacy MongoDB instances (versions < 4.0).
Overview
Modern MongoDB tools often drop support for older versions of the database. This project aims to bridge that gap by providing an MCP interface for legacy MongoDB deployments, allowing AI models to interact with historical data stored in older systems.
Current Status
Focus: Strictly read-only operations.
This project enforces read-only access to ensure data safety when inspecting legacy production systems.
🔒 Read-Only Enforcement
- No
connecttool exposed - Connection is established at startup via environment variable - No write operations - All tools are read-only by design
- Aggregation restrictions -
$outand$mergestages are blocked - Index check mode - Optional enforcement to reject queries without index usage
- Response limits - Configurable limits on documents and bytes per query
Available Tools
| Tool | Description |
|---|---|
list_databases |
List all databases in the MongoDB instance |
list_collections |
List all collections in a database |
find |
Run a find query against a collection |
count |
Count documents in a collection with optional filter |
aggregate |
Run an aggregation pipeline (read-only stages only) |
collection_indexes |
Describe indexes for a collection |
collection_schema |
Infer schema from sampled documents |
collection_storage_size |
Get storage size statistics for a collection |
db_stats |
Get database statistics |
explain |
Get query execution plan for find/aggregate/count |
export_data |
Export query/aggregation results to EJSON file |
mongodb_logs |
Retrieve recent mongod log entries |
get_server_config |
Get current server configuration (redacted) |
Tool Usage Examples
explain
Returns query execution plan statistics:
# Format: ["method_name", {"arguments"}]
explain(
database="testdb",
collection="products",
method=["find", {"filter": {"status": "active"}, "limit": 10}],
verbosity="executionStats"
)
export_data
Exports query results to a JSON file:
# Format: ["target_name", {"arguments"}]
export_data(
database="testdb",
collection="products",
exportTitle="active_products",
exportTarget=["find", {"filter": {"status": "active"}, "limit": 100}],
jsonExportFormat="relaxed" # or "canonical"
)
Configuration
The server is configured via environment variables:
| Variable | Required | Default | Description |
|---|---|---|---|
MDB_MCP_CONNECTION_STRING |
Yes | - | MongoDB connection string (mongodb:// or mongodb+srv://) |
MDB_MCP_READ_ONLY |
No | true |
Enable read-only mode (always true for this server) |
MDB_MCP_INDEX_CHECK |
No | false |
Reject queries that don't use an index |
MDB_MCP_MAX_DOCUMENTS_PER_QUERY |
No | 100 |
Maximum documents per query |
MDB_MCP_MAX_BYTES_PER_QUERY |
No | 16777216 |
Maximum response bytes (16MB) |
MDB_MCP_LOG_LEVEL |
No | INFO |
Logging level (DEBUG, INFO, WARNING, ERROR) |
🔒 Security Recommendation: Always use environment variables for the connection string. Never pass credentials as command-line arguments.
Installation
Prerequisites
- Python 3.10+ (for local installation)
- Docker (for containerized usage)
- Access to a MongoDB instance (version 2.6 - 3.6 recommended)
Option 1: Docker (Recommended)
Pull and run the pre-built Docker image:
docker run --rm -i \
--network=host \
-e MDB_MCP_CONNECTION_STRING="mongodb://user:password@localhost:27017/mydb?authSource=admin" \
-e MDB_MCP_READ_ONLY=true \
ghcr.io/webxspark/legacy-mongodb-mcp:latest
Or build locally:
# Clone the repository
git clone https://github.com/Webxspark/legacy-mongodb-mcp.git
cd legacy-mongodb-mcp
# Build the image
docker build -t legacy-mongodb-mcp .
# Run the container
docker run --rm -i \
--network=host \
-e MDB_MCP_CONNECTION_STRING="mongodb://user:password@localhost:27017" \
legacy-mongodb-mcp
Option 2: Local Installation
# Clone the repository
git clone https://github.com/Webxspark/legacy-mongodb-mcp.git
cd legacy-mongodb-mcp
# Install dependencies
pip install -r requirements.txt
Usage
With VS Code / Cursor (Docker)
Add to your .vscode/mcp.json:
{
"servers": {
"legacy-mongodb": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"--network=host",
"-e", "MDB_MCP_CONNECTION_STRING",
"-e", "MDB_MCP_READ_ONLY",
"ghcr.io/webxspark/legacy-mongodb-mcp:latest"
],
"env": {
"MDB_MCP_CONNECTION_STRING": "mongodb://user:password@localhost:27017/mydb?authSource=admin",
"MDB_MCP_READ_ONLY": "true"
}
}
}
}
With VS Code / Cursor (Local Python)
Add to your .vscode/mcp.json:
{
"servers": {
"legacy-mongodb": {
"command": "python",
"args": ["src/server.py"],
"env": {
"MDB_MCP_CONNECTION_STRING": "mongodb://user:password@localhost:27017",
"MDB_MCP_READ_ONLY": "true",
"MDB_MCP_INDEX_CHECK": "false"
}
}
}
}
Or with uv:
{
"servers": {
"legacy-mongodb": {
"command": "uv",
"args": ["run", "--with", "mcp", "--with", "pymongo", "python", "src/server.py"],
"env": {
"MDB_MCP_CONNECTION_STRING": "mongodb://user:password@localhost:27017"
}
}
}
}
Dry Run Mode
Test your configuration without starting the server:
# Local
export MDB_MCP_CONNECTION_STRING="mongodb://localhost:27017"
python src/server.py --dry-run
# Docker
docker run --rm -i \
-e MDB_MCP_CONNECTION_STRING="mongodb://localhost:27017" \
ghcr.io/webxspark/legacy-mongodb-mcp:latest --dry-run
Testing with Docker Compose
A Docker Compose configuration is provided for testing with MongoDB 3.6:
A Docker Compose configuration is provided for testing with MongoDB 3.6:
# Start the test MongoDB instance
docker compose up -d
# The connection string will be:
# mongodb://admin:secret_password@localhost:27017
Roadmap
Future development will expand functionality based on user needs:
- Write operations (safeguarded, opt-in)
- User/Role management
- Backup utilities
License
Installing Legacy Mongodb
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/Webxspark/legacy-mongodb-mcpFAQ
Is Legacy Mongodb MCP free?
Yes, Legacy Mongodb MCP is free — one-click install via Unyly at no cost.
Does Legacy Mongodb need an API key?
No, Legacy Mongodb runs without API keys or environment variables.
Is Legacy Mongodb hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Legacy Mongodb in Claude Desktop, Claude Code or Cursor?
Open Legacy Mongodb on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare Legacy Mongodb with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
