get_biography
Pack: superhero · Endpoint: https://gateway.pipeworx.io/superhero/mcp
Get biography details (full name, aliases, publisher, first appearance, alignment) for a superhero by ID.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes | Numeric superhero ID (1–731) |
Example call
Arguments
{
"id": 1
}
curl
curl -X POST https://gateway.pipeworx.io/superhero/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_biography","arguments":{"id":1}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_biography', {
"id": 1
});
More examples
{
"id": 75
}
Response shape
Always returns: fullName, alterEgos, aliases, placeOfBirth, firstAppearance, publisher, alignment
| Field | Type | Description |
|---|---|---|
fullName | string | Full legal name |
alterEgos | string | Alternative identities |
aliases | array | List of aliases |
placeOfBirth | string | Birthplace |
firstAppearance | string | First appearance in comics |
publisher | string | Publisher (Marvel, DC, etc.) |
alignment | string | Moral alignment (good, bad, neutral) |
Full JSON Schema
{
"type": "object",
"properties": {
"fullName": {
"type": "string",
"description": "Full legal name"
},
"alterEgos": {
"type": "string",
"description": "Alternative identities"
},
"aliases": {
"type": "array",
"description": "List of aliases",
"items": {
"type": "string"
}
},
"placeOfBirth": {
"type": "string",
"description": "Birthplace"
},
"firstAppearance": {
"type": "string",
"description": "First appearance in comics"
},
"publisher": {
"type": "string",
"description": "Publisher (Marvel, DC, etc.)"
},
"alignment": {
"type": "string",
"description": "Moral alignment (good, bad, neutral)"
}
},
"required": [
"fullName",
"alterEgos",
"aliases",
"placeOfBirth",
"firstAppearance",
"publisher",
"alignment"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"superhero": {
"url": "https://gateway.pipeworx.io/superhero/mcp"
}
}
}
See Getting Started for client-specific install steps.