8 Integrations

Connect to Your Favorite AI Tool

Metrifyr works with any MCP-compatible client. OAuth in one click, API key available as a legacy fallback.

Claude Desktop

OAuth
API Key

Add Metrifyr as a custom connector in Claude Desktop. OAuth in two clicks, or a JSON config with mcp-remote for older versions.

OAuth

Recommended
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.

API Key (legacy)

{
  "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

Claude Code (CLI)

OAuth
API Key

One command to add Metrifyr via streamable HTTP. No npx wrapper needed β€” Claude Code speaks MCP HTTP natively.

OAuth

Recommended
claude mcp add --transport http metrifyr https://mcp.metrifyr.cloud/mcp

Opens the Metrifyr OAuth page in your browser, redirects back when done.

API Key (legacy)

claude mcp add --transport http metrifyr \
  https://mcp.metrifyr.cloud/mcp \
  --header "Authorization: Bearer YOUR_API_KEY"

Cursor IDE

OAuth
API Key

Point Cursor's mcp.json at the Metrifyr URL β€” OAuth runs on first request. Project-scoped or global config supported.

OAuth

Recommended
{
  "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.

API Key (legacy)

{
  "mcpServers": {
    "metrifyr": {
      "url": "https://mcp.metrifyr.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

VS Code (Copilot)

OAuth
API Key

Native streamable HTTP support in .vscode/mcp.json. Works with GitHub Copilot and any MCP-compatible VS Code extension.

OAuth

Recommended
{
  "servers": {
    "metrifyr": {
      "type": "http",
      "url": "https://mcp.metrifyr.cloud/mcp"
    }
  }
}

File: .vscode/mcp.json (workspace) or via "MCP: Open User Configuration" command.

API Key (legacy)

{
  "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.

Claude.ai (Web)

OAuth

Connect via OAuth directly in Claude.ai settings β€” no local install, no config file, no API key.

OAuth

Recommended
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.

ChatGPT

OAuth

Add Metrifyr as a custom connector in ChatGPT. OAuth 2.1 discovery is handled by Metrifyr's .well-known endpoints.

OAuth

Recommended
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.

Windsurf (Cascade)

OAuth
API Key

Streamable HTTP transport in Windsurf's mcp_config.json. OAuth in one click, API key header fallback for locked-down environments.

OAuth

Recommended
{
  "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.

API Key (legacy)

{
  "mcpServers": {
    "metrifyr": {
      "type": "streamable-http",
      "serverUrl": "https://mcp.metrifyr.cloud/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

OpenClaw

OAuth
API Key

Use mcporter CLI to register Metrifyr with OpenClaw. One command for OAuth, optional header flag for API key auth.

OAuth

Recommended
# 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.

API Key (legacy)

mcporter add metrifyr \
  --url https://mcp.metrifyr.cloud/mcp \
  --target openclaw \
  --header "Authorization: Bearer YOUR_API_KEY"

3 Steps to Get Started

1

Sign Up

Create a free account with GitHub or Google.

2

Connect Google

Link your Google Marketing account with one click.

3

Add Config

Copy the config snippet to your MCP client.

Start Using Metrifyr Today

Free to use. Set up in under 2 minutes. No credit card required.

Integrations β€” Connect Metrifyr to Claude, Cursor, VS Code, Windsurf & More | Metrifyr