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-postgres
database
MySQL

Query and manage MySQL databases.

mcp-server-mysql
database
MongoDB

Query and manage MongoDB databases and collections.

@mongodb-js/mongodb-mcp-server
database
SQLite

Create, query, and manage SQLite databases.

@modelcontextprotocol/server-sqlite
database
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"
}
}
}