f56b3efb66
Add two new MCP (Model Context Protocol) sidecars to enable web content fetching and structured problem-solving capabilities: - **Fetch MCP**: Web content fetching and HTML to markdown conversion on port 8082 - **Sequential Thinking MCP**: Structured thinking and problem-solving processes on port 8083 Both sidecars are enabled by default and use the official MCP Docker images (mcp/fetch and mcp/sequentialthinking) with fastmcp SSE transport. Changes: - Add fetch and sequentialthinking sidecars to values.yaml - Add sidecar containers to deployment.yaml template - Update .mcp.json with new server endpoints - Update CLAUDE.md documentation with new sidecar details Closes #43, #44 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>
37 lines
727 B
JSON
37 lines
727 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://localhost:8086/sse"
|
|
},
|
|
"pgtuner": {
|
|
"type": "sse",
|
|
"url": "http://localhost:8085/sse"
|
|
},
|
|
"fetch": {
|
|
"type": "sse",
|
|
"url": "http://localhost:8082/sse"
|
|
},
|
|
"sequentialthinking": {
|
|
"type": "sse",
|
|
"url": "http://localhost:8083/sse"
|
|
}
|
|
}
|
|
}
|
|
|