Skip to main content
POST
/
creative-create
Create creative
curl --request POST \
  --url https://api.agentic.scope3.com/mcp/creative-create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'mcp-session-id: <mcp-session-id>' \
  --data '
{
  "tool": "creative_create",
  "arguments": {
    "creative_id": "example_id_123",
    "name": "Example Name",
    "format_id": {
      "agent_url": "https://example.com",
      "id": "example_id_123"
    },
    "assets": null,
    "brand_agent_id": 100
  }
}
'
{
  "content": [
    {
      "type": "text",
      "text": "string"
    }
  ],
  "structuredContent": {
    "creative_id": "example_id_123",
    "name": "Example Name",
    "format_id": {
      "agent_url": "<string>",
      "id": "<string>",
      "width": 123,
      "height": 123,
      "duration_ms": 123
    },
    "assets": {},
    "status": "string",
    "created_at": "string",
    "updated_at": "string",
    "inputs": [],
    "tags": [],
    "approved": true,
    "weight": 100,
    "placement_ids": [],
    "campaign_id": "example_id_123"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

mcp-session-id
string<uuid>
required

MCP session identifier (UUID). Initialize your session using the /mcp-initialize endpoint first to obtain a session ID, then reuse it for all subsequent tool requests in the same session.

Body

application/json

Request body for creative_create

tool
enum<string>
required
Available options:
creative_create
arguments
object
required

Response

Successful response

content
object[]
required
structuredContent
object
required