person

Pack: studio-ghibli · Endpoint: https://gateway.pipeworx.io/studio-ghibli/mcp

Single person by id.

Parameters

NameTypeRequiredDescription
idstringyes

Example call

Arguments

{
  "id": "ba510c6d-61ae-45a6-8b5a-3dd06b4bed34"
}

curl

curl -X POST https://gateway.pipeworx.io/studio-ghibli/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"person","arguments":{"id":"ba510c6d-61ae-45a6-8b5a-3dd06b4bed34"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('person', {
  "id": "ba510c6d-61ae-45a6-8b5a-3dd06b4bed34"
});

Response shape

FieldTypeDescription
idstringPerson unique identifier
namestringCharacter/person name
genderstringCharacter gender
agestringCharacter age
eye_colorstringEye color
hair_colorstringHair color
filmsarrayArray of film IDs
speciesstringSpecies ID
urlstringAPI URL for this person
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Person unique identifier"
    },
    "name": {
      "type": "string",
      "description": "Character/person name"
    },
    "gender": {
      "type": "string",
      "description": "Character gender"
    },
    "age": {
      "type": "string",
      "description": "Character age"
    },
    "eye_color": {
      "type": "string",
      "description": "Eye color"
    },
    "hair_color": {
      "type": "string",
      "description": "Hair color"
    },
    "films": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of film IDs"
    },
    "species": {
      "type": "string",
      "description": "Species ID"
    },
    "url": {
      "type": "string",
      "description": "API URL for this person"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "studio-ghibli": {
      "url": "https://gateway.pipeworx.io/studio-ghibli/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 7, 2026