DOCS / MCP

USE BRIZZOX
WITH AI

Brizzox speaks the Model Context Protocol (MCP). Drop one URL into Claude, Cursor, or any MCP-compatible client and every API you’re subscribed to becomes a tool the AI can call directly.

STEP 1

SUBSCRIBE

Pick an API from the marketplace and choose a plan. The free Basic tier works for testing.

STEP 2

COPY YOUR KEY

Grab your brz_ key from the dashboard. The same key works for every API you subscribe to.

STEP 3

PASTE INTO CLIENT

Add the snippet below to Claude Desktop, Cursor, or any MCP client. Tools appear automatically.

SERVER URL

https://brizzox.com/api/mcp

Authentication uses the standard Authorization: Bearer brz_... header.

CLAUDE DESKTOP

Open ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows) and merge:

{
  "mcpServers": {
    "brizzox": {
      "url": "https://brizzox.com/api/mcp",
      "headers": {
        "Authorization": "Bearer brz_your_key_here"
      }
    }
  }
}

CURSOR

Cursor reads MCP servers from ~/.cursor/mcp.json. Add:

{
  "mcpServers": {
    "brizzox": {
      "url": "https://brizzox.com/api/mcp",
      "headers": {
        "Authorization": "Bearer brz_your_key_here"
      }
    }
  }
}

CLAUDE.AI (CUSTOM CONNECTOR)

In Claude.ai → Settings → Connectors → Add Custom Connector. URL: https://brizzox.com/api/mcp. Add an Authorization header with value Bearer brz_your_key_here.

WHAT YOU GET

Every endpoint of every API you’re subscribed to becomes one MCP tool. Plus a built-in brizzox__list_my_apis meta-tool that reports your remaining credits per subscription.

  • Ad Libraries
  • SocialLinks
  • PropertyGuru
  • DDproperty
  • Facebook
  • Instagram
  • Bayut

FAQ

Which APIs show up?

Only APIs with an active subscription on your account. The tool list refreshes each time your client reconnects.

Do I get charged credits the same way?

Yes — calls made through MCP go through the same pipeline as the dashboard playground and your own HTTP clients. Plan credits are spent first, then extra credits.

What about rate limits?

Each plan tier (Basic, Pro, Ultra, Mega) carries a per-second rate limit enforced by AWS API Gateway. The same limits apply when calling via MCP.

Can I revoke MCP access without losing my key?

The MCP endpoint authenticates with your existing brz_ keys. Revoke the key from the dashboard to cut access — there’s no separate MCP credential to manage.

Is my key sent over the wire?

Your key sits in the Authorization header of each request to brizzox.com/api/mcp, served over HTTPS. Brizzox stores keys hashed (SHA-256) and never logs the plaintext.