MCP Tools
Deliverables

create_deliverable_from_scratch

Create a freeform document entirely from an AI prompt — no blueprint required. SYNCHRONOUS but SLOW — typically takes 1-3 minutes. Returns the completed document directly.

Parameters

NameTypeRequiredDefaultDescription
instructionsstringYesDetailed instructions describing what to create
collection_idsarrayNoCollection IDs to scope context
dimension_option_idsarrayNoTargeting dimension option IDs
category_idintegerNoCategory ID from get_content_categories
use_extended_thinkingbooleanNoSet true for complex content
project_idstring (uuid)NoProject ID to associate with

Input Schema

{
  "type": "object",
  "required": [
    "instructions"
  ],
  "properties": {
    "project_id": {
      "type": "string",
      "format": "uuid",
      "description": "Project ID to associate with"
    },
    "category_id": {
      "type": "integer",
      "description": "Category ID from get_content_categories"
    },
    "instructions": {
      "type": "string",
      "description": "Detailed instructions describing what to create"
    },
    "collection_ids": {
      "type": "array",
      "description": "Collection IDs to scope context"
    },
    "dimension_option_ids": {
      "type": "array",
      "description": "Targeting dimension option IDs"
    },
    "use_extended_thinking": {
      "type": "boolean",
      "description": "Set to true for complex content generation"
    }
  }
}

Output Schema

{
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Canvas record ID"
    },
    "uuid": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier — use as deliverable_id in get_deliverable and share tools"
    },
    "title": {
      "type": "string",
      "description": "Document title"
    },
    "content": {
      "type": "string",
      "description": "Generated document content in markdown"
    },
    "link_url": {
      "type": "string",
      "format": "uri",
      "description": "Direct URL to view/open this canvas in MarketCore."
    },
    "created_at": {
      "type": "integer",
      "description": "Unix timestamp of creation"
    },
    "canvas_type": {
      "type": "string",
      "description": "Type of canvas (deliverable)"
    }
  }
}

Instructions

Use this tool to create a freeform document entirely from an AI prompt — no blueprint required.

SYNCHRONOUS but SLOW — typically takes 1-3 minutes to return the completed document. This is expected; do not retry or assume an error.

Workflow:

  1. Provide detailed instructions describing what to create.
  2. Optionally get category_id from get_content_categories.
  3. Optionally get dimension_option_ids from get_targeting_dimensions.
  4. Optionally get collection_ids from get_context_collections.
  5. Set use_extended_thinking=true for complex content.

Returns the canvas/document object directly.

Scroll to Top