Bundle
Data engineer's toolbox
Talk to your data layer in plain English: Postgres, SQLite and MongoDB for stores, Redis for cache, Elasticsearch for search, S3 for the lake. Query, inspect, and migrate without leaving the chat.
6 servers · created Jun 11, 2026
Install all of them at once
Drop into your claude_desktop_config.json or Cursor MCP settings. Replace the ${…} placeholders with your own values.
{
"mcpServers": {
"postgres": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://user:pass@localhost:5432/dbname"
]
},
"sqlite": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite",
"/path/to/database.db"
]
},
"redis": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-redis",
"redis://localhost:6379"
]
}
}
} Or install one-by-one
npm install -g @modelcontextprotocol/server-postgres
npm install -g @modelcontextprotocol/server-sqlite
npm install -g mcp-mongo-server
npm install -g @modelcontextprotocol/server-redis
npm install -g @elastic/mcp-server-elasticsearch
uvx mcp-server-aws Like this stack? Build your own.
Free account, 30 seconds. Save servers, ship public or private bundles, install one-click into Claude Desktop or Cursor.
Servers in this bundle (6)
- Postgres · Anthropic · Data
Read-only access to a Postgres database — list tables, run SELECTs, inspect schemas.
- SQLite · Anthropic · Data
Read + write access to a local SQLite database file — full CRUD, schema management.
- MongoDB · Community · Data
Query, modify, and administer MongoDB databases — full driver surface.
- Redis · Anthropic · Data
Read + write to a Redis instance — strings, hashes, lists, sets, sorted sets.
- Elasticsearch · Community · Data
Search + index management for Elasticsearch / OpenSearch clusters.
- AWS S3 · Community · Data
List, read, write, and manage AWS S3 buckets + objects.