get_isbn
Retrieve detailed book information by inputting an ISBN through the Brasil API MCP server, enabling quick access to essential data for AI agents and applications.
Instructions
Get information about a book given an ISBN.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ISBN | Yes | The book's ISBN to query |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ISBN": {
"description": "The book's ISBN to query",
"type": "string"
}
},
"required": [
"ISBN"
],
"type": "object"
}