action tcgdex_get_categories_category { label: "get_categories_category" provider: tcgdex method: GET path: "/categories/{category}" encoding: json input: { type: "object" properties: { category: { type: "string" } } required: ["category"] additionalProperties: false } output: { type: "object" required: ["cards", "name"] properties: { cards: { type: "array" items: { type: "object" required: ["id", "localId", "name"] properties: { id: { type: "string" } image: { type: "string" } localId: { type: "string" } name: { type: "string" } } } } name: { type: "string" } } } }