MCP Tools
Deliverables

get_deliverables

Returns all deliverables visible to the current user as a single unified array. Documents created from scratch and from blueprints are merged with consistent field names.

Input Schema

{
  "type": "object",
  "properties": {}
}

Output Schema

{
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "name",
      "deliverable_id"
    ],
    "properties": {
      "name": {
        "type": "string"
      },
      "web_url": {
        "type": "string"
      },
      "category": {
        "type": [
          "object",
          "null"
        ],
        "properties": {
          "id": {
            "type": "integer"
          },
          "name": {
            "type": "string"
          }
        }
      },
      "is_ready": {
        "type": "boolean"
      },
      "projects": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "created_by": {
        "type": "string"
      },
      "visibility": {
        "type": "string"
      },
      "deliverable_id": {
        "type": "string",
        "format": "uuid"
      }
    }
  }
}

Instructions

Returns all deliverables visible to the current user as a single unified array. Documents created from scratch and from blueprints are merged with consistent field names.

Use deliverable_id with get_deliverable to retrieve full content. Use share_deliverable or create_external_share to share a document.

Scroll to Top