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

NameTypeRequiredDescription
idnumberyesNumeric 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

FieldTypeDescription
fullNamestringFull legal name
alterEgosstringAlternative identities
aliasesarrayList of aliases
placeOfBirthstringBirthplace
firstAppearancestringFirst appearance in comics
publisherstringPublisher (Marvel, DC, etc.)
alignmentstringMoral 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.

Regenerated from source · build May 9, 2026