characters

Pack: anapioficeandfire · Endpoint: https://gateway.pipeworx.io/anapioficeandfire/mcp

Search and list ASOIAF characters filterable by name, culture, birth/death descriptor, gender, and alive status; returns aliases, titles, house affiliations, and book/POV appearances.

Parameters

NameTypeRequiredDescription
namestringno
culturestringno
bornstringno
diedstringno
isAlivebooleanno
genderstringno
pagenumberno
pageSizenumberno

Example call

Arguments

{
  "name": "Jon Snow"
}

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":"characters","arguments":{"name":"Jon Snow"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('characters', {
  "name": "Jon Snow"
});

More examples

{
  "culture": "Northmen",
  "isAlive": true,
  "gender": "Male",
  "page": 1,
  "pageSize": 20
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "List of characters 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.

Regenerated from source · build July 6, 2026