Platform

MCP server

Let AI agents manage keys, usage and apps over MCP.

Roar hosts an MCP server at POST https://cloud.roar-ai.com/mcp, so agents (Claude, IDE assistants, your own) can operate the platform with the same key and permissions you'd give a person.

Connecting

MCP client configuration
{
  "mcpServers": {
    "roar": {
      "url": "https://cloud.roar-ai.com/mcp",
      "headers": { "Authorization": "Bearer roar_live_..." }
    }
  }
}

Transport is streamable HTTP (JSON-RPC over POST). The tool list an agent sees is filtered by the key's scopes — a key without apps:deploy simply never sees the deploy tool.

Available tools

Tools mirror the management API: listing models and keys, creating keys, reading usage and budgets, listing and deploying apps, managing projects. Because every tool call goes through the same authorization and ownership checks as the REST API, an agent can never do more than the key it holds.

Give agents narrowly-scoped keys with an expiry — e.g. usage:read only for a reporting agent.