getCardContent
Retrieve content from Heptabase cards in raw, markdown, or JSON format by specifying the card ID through the Heptabase MCP server.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| cardId | Yes | ||
| format | No | markdown | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "cardId": {
      "type": "string"
    },
    "format": {
      "default": "markdown",
      "enum": [
        "raw",
        "markdown",
        "json"
      ],
      "type": "string"
    }
  },
  "required": [
    "cardId"
  ],
  "type": "object"
}