get_powerstats

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

Get power statistics (intelligence, strength, speed, durability, power, combat) 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_powerstats","arguments":{"id":1}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_powerstats', {
  "id": 1
});

More examples

{
  "id": 50
}

Response shape

Always returns: intelligence, strength, speed, durability, power, combat

FieldTypeDescription
intelligencenumber | nullIntelligence stat (0-100 or null)
strengthnumber | nullStrength stat (0-100 or null)
speednumber | nullSpeed stat (0-100 or null)
durabilitynumber | nullDurability stat (0-100 or null)
powernumber | nullPower stat (0-100 or null)
combatnumber | nullCombat stat (0-100 or null)
Full JSON Schema
{
  "type": "object",
  "properties": {
    "intelligence": {
      "type": [
        "number",
        "null"
      ],
      "description": "Intelligence stat (0-100 or null)"
    },
    "strength": {
      "type": [
        "number",
        "null"
      ],
      "description": "Strength stat (0-100 or null)"
    },
    "speed": {
      "type": [
        "number",
        "null"
      ],
      "description": "Speed stat (0-100 or null)"
    },
    "durability": {
      "type": [
        "number",
        "null"
      ],
      "description": "Durability stat (0-100 or null)"
    },
    "power": {
      "type": [
        "number",
        "null"
      ],
      "description": "Power stat (0-100 or null)"
    },
    "combat": {
      "type": [
        "number",
        "null"
      ],
      "description": "Combat stat (0-100 or null)"
    }
  },
  "required": [
    "intelligence",
    "strength",
    "speed",
    "durability",
    "power",
    "combat"
  ]
}

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