Add Metrifyr as a custom connector in Claude Desktop. OAuth in two clicks, or a JSON config with mcp-remote for older versions.
Settings β Connectors β "Add custom connector" URL: https://mcp.metrifyr.cloud/mcp Claude Desktop will open the Metrifyr login page in your browser. Sign in with GitHub or Google β done.
{
"mcpServers": {
"metrifyr": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.metrifyr.cloud/mcp",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer YOUR_API_KEY"
}
}
}
}macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
One command to add Metrifyr via streamable HTTP. No npx wrapper needed β Claude Code speaks MCP HTTP natively.
claude mcp add --transport http metrifyr https://mcp.metrifyr.cloud/mcp
Opens the Metrifyr OAuth page in your browser, redirects back when done.
claude mcp add --transport http metrifyr \ https://mcp.metrifyr.cloud/mcp \ --header "Authorization: Bearer YOUR_API_KEY"
Point Cursor's mcp.json at the Metrifyr URL β OAuth runs on first request. Project-scoped or global config supported.
{
"mcpServers": {
"metrifyr": {
"url": "https://mcp.metrifyr.cloud/mcp"
}
}
}File: .cursor/mcp.json (per-project) or ~/.cursor/mcp.json (global). Cursor will prompt OAuth the first time.
{
"mcpServers": {
"metrifyr": {
"url": "https://mcp.metrifyr.cloud/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Native streamable HTTP support in .vscode/mcp.json. Works with GitHub Copilot and any MCP-compatible VS Code extension.
{
"servers": {
"metrifyr": {
"type": "http",
"url": "https://mcp.metrifyr.cloud/mcp"
}
}
}File: .vscode/mcp.json (workspace) or via "MCP: Open User Configuration" command.
{
"inputs": [
{
"id": "metrifyr_api_key",
"type": "promptString",
"description": "Metrifyr API key",
"password": true
}
],
"servers": {
"metrifyr": {
"type": "http",
"url": "https://mcp.metrifyr.cloud/mcp",
"headers": {
"Authorization": "Bearer ${input:metrifyr_api_key}"
}
}
}
}VS Code will prompt for the API key the first time and store it securely.
Connect via OAuth directly in Claude.ai settings β no local install, no config file, no API key.
Settings β Connectors β "Add custom connector" URL: https://mcp.metrifyr.cloud/mcp OAuth flow runs in the same window. Once connected, Metrifyr tools are available in every Claude.ai conversation.
Add Metrifyr as a custom connector in ChatGPT. OAuth 2.1 discovery is handled by Metrifyr's .well-known endpoints.
Settings β Apps & Connectors β "Add new connector" Name: Metrifyr URL: https://mcp.metrifyr.cloud/mcp Authentication: OAuth ChatGPT requires OAuth 2.1 β Metrifyr already exposes the required /.well-known/oauth-protected-resource and /.well-known/oauth-authorization-server endpoints, so the connector will discover auth automatically.
Streamable HTTP transport in Windsurf's mcp_config.json. OAuth in one click, API key header fallback for locked-down environments.
{
"mcpServers": {
"metrifyr": {
"type": "streamable-http",
"serverUrl": "https://mcp.metrifyr.cloud/mcp"
}
}
}File: ~/.codeium/windsurf/mcp_config.json. Cascade opens the OAuth flow on first request.
{
"mcpServers": {
"metrifyr": {
"type": "streamable-http",
"serverUrl": "https://mcp.metrifyr.cloud/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Use mcporter CLI to register Metrifyr with OpenClaw. One command for OAuth, optional header flag for API key auth.
# One-time install npm install -g mcporter # Add Metrifyr (opens OAuth in browser) mcporter add metrifyr \ --url https://mcp.metrifyr.cloud/mcp \ --target openclaw
mcporter manages MCP servers for OpenClaw. The --target flag writes to ~/.openclaw/workspace/config/mcporter.json.
mcporter add metrifyr \ --url https://mcp.metrifyr.cloud/mcp \ --target openclaw \ --header "Authorization: Bearer YOUR_API_KEY"
Create a free account with GitHub or Google.
Link your Google Marketing account with one click.
Copy the config snippet to your MCP client.