person
Pack: studio-ghibli · Endpoint: https://gateway.pipeworx.io/studio-ghibli/mcp
Single person by id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
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
| Field | Type | Description |
|---|---|---|
id | string | Person unique identifier |
name | string | Character/person name |
gender | string | Character gender |
age | string | Character age |
eye_color | string | Eye color |
hair_color | string | Hair color |
films | array | Array of film IDs |
species | string | Species ID |
url | string | API 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.