#!/usr/bin/env python3
"""
Call the Trello MCP to fetch card #903
"""
import subprocess
import json
import sys

card_id = "6a1d64126a923744238639f9"

# The MCP tool should be accessible through Claude Code's infrastructure
# We'll invoke it via a request to the MCP client

# Since we're in a subagent context, we need to communicate with the parent
# For now, let's create a structured request that the parent Claude Code session can handle

mcp_request = {
    "tool": "mcp__trello__get_card",
    "params": {
        "cardId": card_id,
        "includeMarkdown": True
    }
}

print(json.dumps(mcp_request))
