MCP Tools
Content

get_content

Retrieves the full content of a specific document by its content_id (UUID).

Parameters

NameTypeRequiredDefaultDescription
content_idstring (uuid)YesUUID of the content item to retrieve

Input Schema

{
  "type": "object",
  "required": [
    "content_id"
  ],
  "properties": {
    "content_id": {
      "type": "string",
      "format": "uuid",
      "description": "The UUID of the content to retrieve."
    }
  }
}

Output Schema

{
  "type": "object",
  "required": [
    "content_id",
    "name",
    "content"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Content name."
    },
    "stage": {
      "type": "string",
      "description": "Enumeration of in_progress or ready."
    },
    "content": {
      "type": "string",
      "description": "Full document content in markdown format."
    },
    "category": {
      "type": [
        "object",
        "null"
      ],
      "properties": {
        "id": {
          "type": "integer"
        },
        "name": {
          "type": "string"
        }
      },
      "description": "Content category, or null if not categorized."
    },
    "link_url": {
      "type": "string",
      "description": "Direct URL to view this content in MarketCore."
    },
    "content_id": {
      "type": "string",
      "format": "uuid",
      "description": "Content identifier."
    },
    "visibility": {
      "type": "string",
      "description": "Visibility setting (e.g. private, team)."
    }
  }
}

Instructions

Retrieves the full content of a specific document by its content_id (UUID).

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

Scroll to Top