fix(hub): use X-MCP-Key header for opax-mcp auth

This commit is contained in:
Chris Christiansen 2026-09-05 11:38:37 +00:00
parent c3efe69b1b
commit 2b1a25a38e
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ def _identity_token() -> str:
def _mcp_headers() -> dict:
return {
"X-MCP-Secret": _MCP_SECRET,
"X-MCP-Key": _MCP_SECRET,
"Content-Type": "application/json",
}

View File

@ -73,7 +73,7 @@ def _identity_token() -> str:
def _mcp_headers() -> dict:
return {
"X-MCP-Secret": _MCP_SECRET,
"X-MCP-Key": _MCP_SECRET,
"Content-Type": "application/json",
}