MCP Tools
Reference

list_targeting_dimensions

Returns targeting dimensions and their options for the current team. Dimensions are categories (e.g. Buying Stage, Persona) with selectable options used to target content generation.

Input Schema

{
  "type": "object",
  "properties": {}
}

Output Schema

{
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "id",
      "name",
      "options"
    ],
    "properties": {
      "id": {
        "type": "integer"
      },
      "name": {
        "type": "string",
        "description": "Dimension name (e.g. Buying Stage, Persona)"
      },
      "options": {
        "type": "array",
        "items": {
          "type": "object",
          "required": [
            "id",
            "name"
          ],
          "properties": {
            "id": {
              "type": "integer",
              "description": "Pass in dimension_option_ids when creating content."
            },
            "name": {
              "type": "string",
              "description": "Option name (e.g. Awareness, Decision)"
            }
          }
        }
      }
    }
  }
}

Instructions

Returns targeting dimensions and their options for the current team. Dimensions are categories (e.g. Buying Stage, Persona) with selectable options used to target content generation. Pass dimension option IDs as dimension_option_ids when calling create_content to generate content targeted to specific audiences or stages.

Scroll to Top