36 lines
694 B
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
} |