BrandKarma

create_content_plan

Creates a new content plan and generates AI workstreams. This is an expensive operation (uses LLM credits) and may take 15-30 seconds.

Remote revuo:brandkarma-4084

Other tools also called create_content_plan? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "brandId": {
      "description": "Brand ID (ObjectId)",
      "type": "string"
    },
    "startDate": {
      "description": "Plan start date (ISO 8601, e.g. '2025-02-01')",
      "type": "string"
    },
    "endDate": {
      "description": "Plan end date (ISO 8601)",
      "type": "string"
    },
    "name": {
      "description": "Plan name (auto-generated if omitted)",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "themeFocus": {
      "description": "Theme or focus area for AI generation",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "additionalInstructions": {
      "description": "Additional instructions for the AI content planner",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "brandId",
    "startDate",
    "endDate"
  ]
}