BrandReel
← Agents
MCP

Connect your AI agent to BrandReel

One stateless streamable HTTP endpoint exposes BrandReel’s owned brand data, model catalog, credit balance, generations, and creative workflow prompts.

Claude Code
claude mcp add --transport http brandreel https://brandreel.com/api/mcp \
  --header "Authorization: Bearer br_your_key"
Cursor / streamable HTTP mcp.json
{
  "mcpServers": {
    "brandreel": {
      "url": "https://brandreel.com/api/mcp",
      "headers": { "Authorization": "Bearer br_your_key" }
    }
  }
}

Workflows are MCP prompts

The campaign kit, product shoot, social video, and creative review pages are also returned by prompts/list. Call prompts/get with the workflow slug and an optional brand slug.

Get a workflow prompt
curl -s https://brandreel.com/api/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":4,"method":"prompts/get","params":{"name":"campaign-kit","arguments":{"brand":"acme"}}}'

Authentication and safety

Create a br_… key in the dashboard. Tool calls inherit the API’s ownership checks, rate limits, and credit enforcement. Every paid generation tool requires a positive hard credit ceiling. Listing tools and prompts does not require a key; calling account tools does.

Create an API key
CLI setup →HTTP API →Discovery document →