chore(mcp): switch MCP endpoints to HTTPS domain URLs #3

Merged
mathias merged 1 commits from agent/mcp-domain-urls into main 2026-05-08 14:43:18 +00:00
Showing only changes of commit cb51ff7ba1 - Show all commits

View File

@@ -2,14 +2,17 @@
"mcpServers": { "mcpServers": {
"supervisor": { "supervisor": {
"type": "http", "type": "http",
"url": "http://koala:30320/mcp", "url": "https://supervisor-mcp.d-ma.be/mcp",
"headers": { "headers": {
"Authorization": "Bearer ${SUPERVISOR_MCP_TOKEN}" "Authorization": "Bearer ${SUPERVISOR_MCP_TOKEN}"
} }
}, },
"brain": { "brain": {
"type": "http", "type": "http",
"url": "http://koala:30330/mcp" "url": "https://brain-mcp.d-ma.be/mcp",
"headers": {
"Authorization": "Bearer ${BRAIN_MCP_TOKEN}"
}
} }
} }
} }