people

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

List Studio Ghibli characters (up to optional limit), returning name, gender, age, eye/hair color, species, and the films they appear in.

Parameters

NameTypeRequiredDescription
limitnumberno

Example call

Arguments

{
  "limit": 20
}

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":"people","arguments":{"limit":20}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('people', {
  "limit": 20
});

Response shape

Always returns: items, count

FieldTypeDescription
itemsarray
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "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"
          }
        }
      }
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

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 6, 2026