#!/bin/bash
# Since we can't call MCP directly from this context,
# let me try to use Node.js llm-mcp-runner if available

if command -v llm-mcp-runner &> /dev/null; then
    llm-mcp-runner "mcp__trello__get_card" '{"cardId":"6a1d6953b5b5e1965686f19f","includeMarkdown":true}'
elif command -v npx &> /dev/null; then
    # Try via npm if available
    npx @anthropic-ai/llm-mcp-runner "mcp__trello__get_card" '{"cardId":"6a1d6953b5b5e1965686f19f","includeMarkdown":true}'
else
    echo "No MCP runner available"
    exit 1
fi
