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
| 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_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
| Field | Type | Description |
|---|---|---|
intelligence | number | null | Intelligence stat (0-100 or null) |
strength | number | null | Strength stat (0-100 or null) |
speed | number | null | Speed stat (0-100 or null) |
durability | number | null | Durability stat (0-100 or null) |
power | number | null | Power stat (0-100 or null) |
combat | number | null | Combat 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.