MCP Tools
Blueprints

create_blueprint_draft

Create an AI-assisted blueprint DRAFT from a prompt. This creates a draft blueprint template you can review before saving as a full blueprint.

Parameters

NameTypeRequiredDefaultDescription
instructionsstringYesDescription of the blueprint to create
namestringYesName for the draft
contentstringYesInitial content as markdown
category_idintegerNoCategory ID from get_content_categories

Input Schema

{
  "type": "object",
  "required": [
    "instructions",
    "name",
    "content"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the draft"
    },
    "content": {
      "type": "string",
      "description": "Initial content as markdown"
    },
    "category_id": {
      "type": "integer",
      "description": "Category ID from get_content_categories"
    },
    "instructions": {
      "type": "string",
      "description": "Description of the blueprint to create"
    }
  }
}

Output Schema

{
  "type": "object",
  "required": [
    "id",
    "uuid",
    "title",
    "content",
    "link_url"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "description": "Canvas record ID for the blueprint draft"
    },
    "uuid": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier for this draft"
    },
    "title": {
      "type": "string",
      "description": "Blueprint draft name"
    },
    "content": {
      "type": "string",
      "description": "AI-generated blueprint template content in markdown"
    },
    "link_url": {
      "type": "string",
      "format": "uri",
      "description": "Direct URL to view/edit this blueprint draft in MarketCore"
    }
  }
}

Instructions

Use this tool to create an AI-assisted blueprint DRAFT from a prompt.

Important: This creates a draft blueprint template you can review before saving as a full blueprint — it does not create content directly.

Workflow:

  1. Provide instructions describing the blueprint you want to create.
  2. Provide a name for the draft.
  3. Provide initial content as markdown.
  4. Optionally get category_id from list_content_categories.
  5. Review the AI-generated result, then have the user visit the link_url to finalize the blueprint.
Scroll to Top