Files
2026-04-06 01:44:58 +03:00

36 lines
694 B
JSON

{
"mcpServers": {
"postgres": {
"command": "uvx",
"args": [
"postgres-mcp",
"--access-mode=unrestricted"
],
"env": {
"DATABASE_URI": "postgresql://postgres:postgres@localhost:5332/coffee_project_db"
}
},
"redis": {
"command": "uvx",
"args": [
"--from",
"redis-mcp-server@latest",
"redis-mcp-server",
"--url",
"redis://localhost:6379/0"
]
},
"lighthouse": {
"command": "bunx",
"args": [
"@danielsogl/lighthouse-mcp@latest"
]
},
"docker": {
"command": "uvx",
"args": [
"mcp-server-docker"
]
}
}
}