vehicles
Pack: studio-ghibli · Endpoint: https://gateway.pipeworx.io/studio-ghibli/mcp
List vehicles from Studio Ghibli films (up to optional limit), returning name, description, vehicle class, length, pilot, and the film it appears in.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no |
Example call
Arguments
{
"limit": 8
}
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":"vehicles","arguments":{"limit":8}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('vehicles', {
"limit": 8
});
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Vehicle unique identifier"
},
"name": {
"type": "string",
"description": "Vehicle name"
},
"description": {
"type": "string",
"description": "Vehicle description"
},
"vehicle_class": {
"type": "string",
"description": "Vehicle class/type"
},
"length": {
"type": "string",
"description": "Vehicle length"
},
"pilot": {
"type": "string",
"description": "Pilot ID"
},
"films": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of film IDs"
},
"url": {
"type": "string",
"description": "API URL for this vehicle"
}
}
}
},
"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.