GrowtOperator ProgramSign in
MCP Setup Guide

Connect Your AI Agent in 2 Minutes

MCP (Model Context Protocol) is an open standard that lets AI assistants connect to live data sources. Add one config block and your agent gets instant access to Transfer Oracle tools.

Works with Claude Code, Cursor, Windsurf, VS Code Copilot, and any MCP-compatible agent.

Choose Your MCP

Transfer Oracle provides four MCP servers for different audiences. Pick the one that matches your role.

Setup by AI Agent

Replace YOUR_MCP_URL with the URL from the table above. All URL-based MCPs use the same config pattern.

Claude Code

Anthropic

Add to .mcp.json in your project root, or ~/.claude/.mcp.json for global access.

{
  "mcpServers": {
    "transferoracle": {
      "url": "https://YOUR_MCP_URL"
    }
  }
}

Cursor

Anysphere

Add to .cursor/mcp.json in your project root.

{
  "mcpServers": {
    "transferoracle": {
      "url": "https://YOUR_MCP_URL"
    }
  }
}

Windsurf

Codeium

Add to ~/.codeium/windsurf/mcp_config.json.

{
  "mcpServers": {
    "transferoracle": {
      "url": "https://YOUR_MCP_URL"
    }
  }
}

VS Code Copilot

GitHub / Microsoft

Add to .vscode/settings.json in your project.

{
  "mcp": {
    "servers": {
      "transferoracle": {
        "url": "https://YOUR_MCP_URL"
      }
    }
  }
}

Config File Locations by OS

AgentmacOS / LinuxWindows
Claude Code (global)~/.claude/.mcp.json%USERPROFILE%\.claude\.mcp.json
Claude Code (project).mcp.json.mcp.json
Cursor.cursor/mcp.json.cursor\mcp.json
Windsurf~/.codeium/windsurf/mcp_config.json%APPDATA%\Codeium\windsurf\mcp_config.json
VS Code Copilot.vscode/settings.json.vscode\settings.json

For Operators — Management Dashboard

The Operator MCP gives you a complete view of your franchise — tenants, usage, revenue, and configuration — directly through your AI assistant. Ask it anything about your business.

operator_dashboard()

Complete overview — account, tenants, usage, MCP config in one call.

list_tenants()

All your tenants with tier, status, and usage stats.

tenant_detail(id)

Deep dive into one tenant — daily usage breakdown.

usage_report()

Aggregate + per-tenant usage with 30-day trend.

Your config:

{
  "mcpServers": {
    "transferoracle-operator": {
      "url": "https://operator-mcp.transferoracle.ai/mcp"
    }
  }
}

Example conversation:

You:"Show me my operator dashboard"
AI:Calls operator_dashboard()
═══ TRANSFER ORACLE — OPERATOR DASHBOARD ═══ Generated: 2026-03-09 14:30 UTC ── Account ── Name: TransferOracle Tier: compliance Region: eu Status: active ── Tenants (3) ── Active: 3 | Suspended: 0 Acme Corp compliance active 152 calls/mo 1,204 total DataSafe Inc team active 87 calls/mo 445 total ModelCheck AI api active 23 calls/mo 67 total ── Usage ── Total API calls: 1,716 Calls today: 12 Calls this month: 262

For Your Customers — Audit MCP

Your customers connect their AI agent and run model transfer audits instantly. Give them this config — they'll be running audits in under a minute.

Share this with your customers:

{
  "mcpServers": {
    "transferoracle": {
      "url": "https://mcp.transferoracle.ai/mcp"
    }
  }
}

Add this to their AI agent's MCP config file. See the table above for file locations per agent and OS.

What they get

  • audit_model_transfer() — validate model safety before deployment. Returns verdict, confidence, classes at risk, and recommendations.
  • check_account() — view their plan tier, enabled features, and account health.
  • get_usage() — total API calls, today, this month, daily breakdown.

Free tier

Customers without an API key get 2 free audit calls. After that, they're prompted to register for a free 30-day key at transferoracle.ai/portal/register. No credit card required.

For Investors — Platform Metrics

The Investor MCP gives investors read-only access to aggregate platform health, revenue, growth trends, and operator pipeline — no spreadsheets, no PDFs.

Investor config:

{
  "mcpServers": {
    "transferoracle-investor": {
      "url": "https://investor-mcp.transferoracle.ai/mcp"
    }
  }
}

8 tools available: platform_snapshot, growth_trend, tier_health, revenue_report, operator_pipeline, web_traffic, market_overview, platform_report. All return aggregate data only — no individual tenant names, API keys, or PII.

Read the full Investor MCP documentation →

Growt API MCP — Public Package

For developers who want to try the audit tool without any server setup. Install from PyPI or npm and run locally.

Python (uvx / pip)

# Run directly (no install)
uvx mcp-growt-audit --stdio

# Or install globally
pip install mcp-growt-audit

Node.js (npx)

# Run directly (no install)
npx -y mcp-growt-audit

Claude Code / Cursor config (command-based):

{
  "mcpServers": {
    "transferoracle": {
      "command": "uvx",
      "args": ["mcp-growt-audit", "--stdio"],
      "env": {
        "GROWT_API_KEY": "your-api-key-here"
      }
    }
  }
}

Leave GROWT_API_KEY empty for 2 free audits. Get a free 30-day key at transferoracle.ai/portal/register.

Windsurf config (command-based):

{
  "mcpServers": {
    "transferoracle": {
      "command": "uvx",
      "args": ["mcp-growt-audit", "--stdio"],
      "env": {
        "GROWT_API_KEY": "your-api-key-here"
      }
    }
  }
}

Save to ~/.codeium/windsurf/mcp_config.json.

VS Code Copilot config (command-based):

{
  "mcp": {
    "servers": {
      "transferoracle": {
        "command": "uvx",
        "args": ["mcp-growt-audit", "--stdio"],
        "env": {
          "GROWT_API_KEY": "your-api-key-here"
        }
      }
    }
  }
}

Add to .vscode/settings.json in your project.

Troubleshooting

MCP not connecting

Make sure the URL ends with /mcp (e.g. https://mcp.transferoracle.ai/mcp). Check that you're using HTTPS. Restart your AI agent after changing the config.

Tools not showing up

Restart your AI agent completely — most agents only load MCP configs on startup. Verify the JSON syntax is valid (no trailing commas, proper quotes).

Tool calls returning errors

Check your API key is set correctly. Free tier has a 2-call limit — register for a free key at transferoracle.ai/portal/register.

"Command not found" for uvx or npx

Install Python 3.11+ (for uvx: pip install uv) or Node.js 18+ (npx comes with npm). Then restart your terminal.

Can I use multiple MCPs at once?

Yes. Add multiple entries to the mcpServers object with different names (e.g. "transferoracle-operator", "transferoracle-audit", "transferoracle-investor").

AI Agent Skills

Skills are interactive guides that teach your AI agent how to use each MCP. Install them once and use slash commands to get guided help.

/mcp-setup

Set up any MCP endpoint — config files, locations, troubleshooting.

/mcp-operator

Use the operator dashboard — 4 tools for managing your business.

/mcp-customer-audit

Run model audits — verdicts, oracle scores, recommendations.

/mcp-investor

Query platform metrics — snapshots, trends, board reports.

How to install skills

Copy the skill files to ~/.claude/skills/ (macOS/Linux) or %USERPROFILE%\.claude\skills\ (Windows). Each skill is a single .md file. After installing, restart your AI agent and type the slash command to activate.

Tutorial Videos

Watch step-by-step video tutorials for setup and usage.

Ready to get started?

Apply to become an operator and give your customers AI-powered model validation.

MCP is an open standard maintained by Anthropic. All Transfer Oracle MCPs use HTTPS encryption and scoped API keys. Operator keys are issued via Keygen — rate-limited and revocable.