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
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
instructions | string | Yes | — | Detailed instructions describing what to create |
collection_ids | array | No | — | Collection IDs to scope context |
dimension_option_ids | array | No | — | Targeting dimension option IDs |
category_id | integer | No | — | Category ID from get_content_categories |
use_extended_thinking | boolean | No | — | Set true for complex content |
project_id | string (uuid) | No | — | Project 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:
- Provide detailed
instructionsdescribing what to create. - Optionally get
category_idfromget_content_categories. - Optionally get
dimension_option_idsfromget_targeting_dimensions. - Optionally get
collection_idsfromget_context_collections. - Set
use_extended_thinking=truefor complex content.
Returns the canvas/document object directly.