Skip to main content
POST
/
brand-story-create
Create brand story
curl --request POST \
  --url https://api.agentic.scope3.com/mcp/brand-story-create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'mcp-session-id: <mcp-session-id>' \
  --data '
{
  "tool": "brand_story_create",
  "arguments": {
    "brandAgentId": null,
    "name": "Example Name",
    "languages": []
  }
}
'
{
  "content": [
    {
      "type": "text",
      "text": "string"
    }
  ],
  "structuredContent": {
    "id": "example_id_123",
    "name": "Example Name",
    "createdAt": "string",
    "updatedAt": "string",
    "brandAgentId": "example_id_123",
    "countryCodes": [],
    "channelCodes": [],
    "languages": [],
    "brands": [],
    "currentModel": {
      "id": "<string>",
      "name": "<string>",
      "prompt": "<string>",
      "status": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  }
}

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 brand_story_create

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

Response

Successful response

content
object[]
required
structuredContent
object
required