d32e453f93
- Add pgtuner MCP sidecar configuration (disabled by default) - Supports PostgreSQL performance tuning and optimization - Analyzes slow queries, recommends indexes, detects bloat - Requires DATABASE_URI secret to be configured - Runs in SSE mode on port 8085 Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
29 lines
580 B
JSON
29 lines
580 B
JSON
{
|
|
"mcpServers": {
|
|
"github": {
|
|
"type": "http",
|
|
"url": "https://api.githubcopilot.com/mcp/",
|
|
"headers": {
|
|
"Authorization": "Bearer ${GITHUB_TOKEN}"
|
|
}
|
|
},
|
|
"kubernetes": {
|
|
"type": "sse",
|
|
"url": "http://localhost:8080/sse"
|
|
},
|
|
"flux": {
|
|
"type": "sse",
|
|
"url": "http://localhost:8081/sse"
|
|
},
|
|
"playwright": {
|
|
"type": "sse",
|
|
"url": "http://playwright-mcp.playwright.svc.cluster.local:3000/sse"
|
|
},
|
|
"pgtuner": {
|
|
"type": "sse",
|
|
"url": "http://localhost:8085/sse"
|
|
}
|
|
}
|
|
}
|
|
|