action tcgdex_cards { label: "fetch the list of cards" description: "desc" provider: tcgdex method: GET path: "/cards" encoding: json output: { type: "array" items: { type: "object" required: ["id", "localId", "name"] properties: { id: { type: "string" } image: { type: "string" } localId: { type: "string" } name: { type: "string" } } } } }