books
Pack: anapioficeandfire · Endpoint: https://gateway.pipeworx.io/anapioficeandfire/mcp
Search and list A Song of Ice and Fire books filterable by name, release date range (fromReleaseDate/toReleaseDate), with pagination (page, pageSize); returns ISBN, authors, publisher, number of pages, and character lists.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | |
fromReleaseDate | string | no | |
toReleaseDate | string | no | |
page | number | no | |
pageSize | number | no |
Example call
Arguments
{
"name": "A Game of Thrones"
}
curl
curl -X POST https://gateway.pipeworx.io/anapioficeandfire/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"books","arguments":{"name":"A Game of Thrones"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('books', {
"name": "A Game of Thrones"
});
More examples
{
"fromReleaseDate": "1996-01-01",
"toReleaseDate": "2005-12-31",
"page": 1,
"pageSize": 10
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "List of books from A Song of Ice and Fire"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"anapioficeandfire": {
"url": "https://gateway.pipeworx.io/anapioficeandfire/mcp"
}
}
}
See Getting Started for client-specific install steps.