action isbndb_get_books_query { label: "Search books" description: "This returns a list of books that match the query" provider: isbndb method: GET path: "/books/{query}" encoding: json input: { type: "object" properties: { author: { type: "string" } page: { type: "string" } pageSize: { type: "string" } query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" additionalProperties: true } }