MCP Tools
Deliverables

get_deliverable

Retrieve the full content of a specific document by its UUID. Works with any document UUID — whether from get_deliverables, get_generation_status, or create_deliverable_from_scratch.

Parameters

NameTypeRequiredDefaultDescription
deliverable_idstringYesDocument UUID

Input Schema

{
  "type": "object",
  "required": [
    "deliverable_id"
  ],
  "properties": {
    "deliverable_id": {
      "type": "string",
      "description": "Document UUID"
    }
  }
}

Output Schema

{
  "type": "object",
  "required": [
    "deliverable_id",
    "name",
    "content"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Document name."
    },
    "content": {
      "type": "string",
      "description": "Full document content in markdown format."
    },
    "category": {
      "type": [
        "object",
        "null"
      ],
      "properties": {
        "id": {
          "type": "integer",
          "description": "Category ID."
        },
        "name": {
          "type": "string",
          "description": "Category name."
        }
      },
      "description": "Content category, or null if not categorized."
    },
    "is_ready": {
      "type": "boolean",
      "description": "Whether the document is fully generated."
    },
    "link_url": {
      "type": "string",
      "description": "Direct URL to view this document in MarketCore."
    },
    "visibility": {
      "type": "string",
      "description": "Visibility setting (e.g. private, team)."
    },
    "deliverable_id": {
      "type": "string",
      "format": "uuid",
      "description": "Document identifier."
    }
  }
}

Instructions

Retrieve the full content of a specific document. Works with any document UUID — whether from get_deliverables, get_generation_status, or create_deliverable_from_scratch.

The content field contains the full document text in markdown format. Use this to read, summarize, or reference existing documents.

Scroll to Top