character
Pack: anapioficeandfire · Endpoint: https://gateway.pipeworx.io/anapioficeandfire/mcp
Single character by id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes |
Example call
Arguments
{
"id": 583
}
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":"character","arguments":{"id":583}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('character', {
"id": 583
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "A single character 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.