Skip to main content
POST
/
brand-agent-get
Get brand agent
curl --request POST \
  --url https://api.agentic.scope3.com/mcp/brand-agent-get \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'mcp-session-id: <mcp-session-id>' \
  --data '
{
  "tool": "brand_agent_get",
  "arguments": {
    "brandAgentId": 100
  }
}
'
{
  "content": [
    {
      "type": "text",
      "text": "string"
    }
  ],
  "structuredContent": {
    "id": 100,
    "name": "Example Name",
    "customerId": 100,
    "createdAt": "string",
    "updatedAt": "string",
    "description": "string",
    "manifestUrl": "https://example.com",
    "seatId": 100,
    "countryCodes": []
  }
}

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_agent_get

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

Parameters for retrieving a specific brand agent

Response

Successful response

content
object[]
required
structuredContent
object
required