avalon

Resources

Adpanel MCP Gateway: Developer Documentation

Technical specifications and schemas to pipe our foundational AI video generation tools natively into Cursor, Claude Code, and autonomous enterprise workflows.

Technical Narrative

Modern software engineering and media operations are moving away from manual browser interfaces. To build scalable content workflows, developers need a way to pass unstructured database assets and brand guidelines directly to AI models without leaving their local text editor or terminal environment.

The Adpanel MCP (Model Context Protocol) Server solves this by acting as an open open-standard gateway. It exposes our deep multi-shot video orchestration engine, asset verification loops, and ephemeral rendering sandboxes directly to advanced coding agents as executable tools.

Exposed Protocol Tools Schema

json
{
  "mcp_server_tools": {
    "adpanel_ingest_brand_matrix": {
      "description": "Vectorizes raw product URLs, inventory spreadsheets, and image directories into a unified, structured context profile.",
      "parameters": { "type": "object", "properties": { "source_url": { "type": "string" } } }
    },
    "adpanel_orchestrate_cinematic_timeline": {
      "description": "Commands the internal state machine to draft a script timeline while locking character seeds and camera physics across frames.",
      "parameters": { "type": "object", "properties": { "shot_list": { "type": "array" } } }
    },
    "adpanel_synthesize_broadcast_asset": {
      "description": "Funnels the multi-modal prompt arrays to underlying engines and instantiates a backend sandbox for final video compilation.",
      "parameters": { "type": "object", "properties": { "render_profile": { "type": "string" } } }
    }
  }
}