create_category

Creates a content category for a brand. Categories are required for publishing articles. Returns the created category with its ID.

Available from 1 provider (1 remote)

Input Schema


            {
  "type": "object",
  "properties": {
    "brandId": {
      "description": "Brand ID (ObjectId)",
      "type": "string"
    },
    "name": {
      "description": "Category name (e.g. 'Industry News', 'Product Updates')",
      "type": "string"
    },
    "description": {
      "description": "Short description of what this category covers",
      "type": "string"
    },
    "slug": {
      "description": "URL slug (auto-generated from name if omitted)",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "brandId",
    "name",
    "description"
  ]
}
          

Remote Providers (1)

These servers are accessible over the network — no local installation needed.

BrandKarma

Remote

https://app.getbrandkarma.com/api/mcp/

View product →