Connect OpenClaw to Performance Hub

Instructions current as of 17 June 2026 (AEST). Vendor MCP support changes frequently - verify against the linked sources if something looks different.

OpenClaw supports outbound MCP servers, including Streamable HTTP servers.

Performance Hub MCP server:

https://app.performancehub.co/mcp

OAuth setup

Use OAuth if your OpenClaw version and Performance Hub deployment complete the remote MCP OAuth flow successfully:

openclaw mcp add performancehub \
  --url https://app.performancehub.co/mcp \
  --transport streamable-http \
  --auth oauth

openclaw mcp login performancehub
openclaw mcp doctor performancehub --probe

Static key setup

If you are using an MCP API key, pass it as a header:

export PH_MCP_API_KEY='phk_your_key_here'

openclaw mcp add performancehub \
  --url https://app.performancehub.co/mcp \
  --transport streamable-http \
  --header "Authorization: Bearer $PH_MCP_API_KEY" \
  --timeout 20 \
  --connect-timeout 5

openclaw mcp doctor performancehub --probe

Alternative header:

openclaw mcp add performancehub \
  --url https://app.performancehub.co/mcp \
  --transport streamable-http \
  --header "x-mcp-api-key: $PH_MCP_API_KEY"

Safety

Do not commit literal bearer tokens or MCP keys to OpenClaw config files. Use environment variables or OpenClaw's secret storage if available.

Sources