Back to stacks
Database Admin
by Jonathan S
Multi-database management: PostgreSQL, MySQL, MongoDB, SQLite, and Redis in one stack.
Servers in this stack
database
PostgreSQL
Query and manage PostgreSQL databases.
@modelcontextprotocol/server-postgresdatabase
MySQL
Query and manage MySQL databases.
mcp-server-mysqldatabase
MongoDB
Query and manage MongoDB databases and collections.
@mongodb-js/mongodb-mcp-serverdatabase
SQLite
Create, query, and manage SQLite databases.
@modelcontextprotocol/server-sqlitedatabase
Redis
Interact with Redis key-value stores and data structures.
Copy config
// .vscode/mcp.json{ "servers": { "postgresql": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-postgres" ], "type": "stdio" }, "mysql": { "command": "npx", "args": [ "-y", "mcp-server-mysql" ], "type": "stdio" }, "mongodb": { "command": "npx", "args": [ "-y", "@mongodb-js/mongodb-mcp-server" ], "type": "stdio" }, "sqlite": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-sqlite" ], "type": "stdio" } }}