houses
Pack: anapioficeandfire · Endpoint: https://gateway.pipeworx.io/anapioficeandfire/mcp
Search/list houses.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | |
region | string | no | |
words | string | no | |
hasTitles | boolean | no | |
hasSeats | boolean | no | |
hasDiedOut | boolean | no | |
hasAncestralWeapons | boolean | no | |
page | number | no | |
pageSize | number | no |
Example call
Arguments
{
"name": "House Stark"
}
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":"houses","arguments":{"name":"House Stark"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('houses', {
"name": "House Stark"
});
More examples
{
"region": "The North",
"words": "Winter is Coming",
"hasTitles": true,
"hasDiedOut": false
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "List of houses 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.