import json
import sys

# Simulate the MCP call result - we need cardId 6a1d64277ddbf0d220035bbb
# The task says: "Parse la description en map langue->docId"
# We need to actually get the card. Let me check if there's a fallback way

# Try reading from any cached trello data
import glob
import os

# Look for any .trello or cached card data
for path in glob.glob("/home/dev/.cache/**/*trello*", recursive=True):
    print(f"Found: {path}")

print("Need to fetch card directly...")
