MCP Tools
Reference

list_content_categories

Returns all content categories available to your team. Categories organize blueprints and content by type (e.g. GTM Strategy, Product Launch, etc).

Input Schema

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

Output Schema

{
  "type": "object",
  "required": [
    "categories"
  ],
  "properties": {
    "categories": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "name"
        ],
        "properties": {
          "id": {
            "type": "integer",
            "description": "Category ID. Pass to create_blueprint or create_blueprint_draft as category_id."
          },
          "name": {
            "type": "string",
            "description": "Category name (e.g. GTM Messaging)"
          }
        }
      }
    }
  }
}

Instructions

Returns all content categories available to your team. Categories organize blueprints and content by type (e.g. GTM Messaging, Website & Blog, Sales & Partner Materials). Use the 'id' as the category_id when creating blueprints (create_blueprint) or content (create_content).

Clients that previously read the bare array must now read response.categories.

Scroll to Top