docs initial

This commit is contained in:
Daniil
2026-04-06 01:44:58 +03:00
parent 2a344ad588
commit 694b8bc77c
84 changed files with 6922 additions and 298 deletions
+19 -6
View File
@@ -2,22 +2,35 @@
"mcpServers": {
"postgres": {
"command": "uvx",
"args": ["postgres-mcp", "--access-mode=unrestricted"],
"args": [
"postgres-mcp",
"--access-mode=unrestricted"
],
"env": {
"DATABASE_URI": "postgresql://postgres:postgres@localhost:5332/cofee"
"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"]
"args": [
"--from",
"redis-mcp-server@latest",
"redis-mcp-server",
"--url",
"redis://localhost:6379/0"
]
},
"lighthouse": {
"command": "bunx",
"args": ["@danielsogl/lighthouse-mcp@latest"]
"args": [
"@danielsogl/lighthouse-mcp@latest"
]
},
"docker": {
"command": "uvx",
"args": ["mcp-server-docker"]
"args": [
"mcp-server-docker"
]
}
}
}
}