Settings

Posting cadence and upload-post connection.

New approved posts queue this many hours after the last one.

The "user" profile name set up in your upload-post dashboard. The API key is stored as a server secret.

API tokens

Mint a personal token so external AI agents (Claude Code, OpenCode) can drive Reel Forge over MCP.

No tokens yet.

/api/public/mcp

Add to your Claude Code / OpenClaw MCP config

{
  "mcpServers": {
    "reel-forge": {
      "type": "http",
      "url": "/api/public/mcp",
      "headers": {
        "Authorization": "Bearer rf_YOUR_TOKEN"
      }
    }
  }
}

Add to claude_desktop_config.json

{
  "mcpServers": {
    "reel-forge": {
      "url": "/api/public/mcp",
      "headers": {
        "Authorization": "Bearer rf_YOUR_TOKEN"
      }
    }
  }
}