action tcgdex_get_sets { label: "get_sets" provider: tcgdex method: GET path: "/sets" encoding: json output: { type: "array" items: { type: "object" required: ["cardCount", "id", "name"] properties: { cardCount: { type: "object" required: ["official", "total"] properties: { official: { type: "number" } total: { type: "number" } } } id: { type: "string" } logo: { type: "string" } name: { type: "string" } symbol: { type: "string" } } } } }