import json
import sys

# Try to invoke the Trello MCP tool through Claude's API wrapper
# This is a long shot, but worth trying

trello_call = {
    "tool": "mcp__trello__get_card",
    "params": {
        "cardId": "6a1d694a15d59736cd9622ec",
        "includeMarkdown": True
    }
}

print("Attempting MCP tool invocation...", file=sys.stderr)
print(json.dumps(trello_call), flush=True)

# This would be intercepted by the parent system if it's watching
sys.exit(1)  # Signal that external invocation is needed

