blob: c3ac2bb3c8d23ea5048db1afe67f5187b44fb789 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
"mcpServers": {
"postgres": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://${VIBE_INFRA_DB_USER}:${VIBE_INFRA_DB_PASS}@localhost:5433/gitea"
]
},
"sonarqube": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"sonarqube-mcp-server"
],
"env": {
"SONARQUBE_URL": "http://localhost:9100",
"SONARQUBE_TOKEN": "${SONARQUBE_TOKEN}"
}
}
}
}
|