#!/usr/bin/env python3
import sys
import json

# This script will be invoked by the parent to get card data
# For now, we'll just prepare the payload that the MCP tool needs

card_id = "6a1d64126a923744238639f9"
print(json.dumps({
    "cardId": card_id,
    "includeMarkdown": True
}))
