vehicle

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

Single vehicle by id.

Parameters

NameTypeRequiredDescription
idstringyes

Example call

Arguments

{
  "id": "4e6ad2f5-3cb7-4a87-a8a5-ecea11d28f87"
}

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":"vehicle","arguments":{"id":"4e6ad2f5-3cb7-4a87-a8a5-ecea11d28f87"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('vehicle', {
  "id": "4e6ad2f5-3cb7-4a87-a8a5-ecea11d28f87"
});

Response shape

FieldTypeDescription
idstringVehicle unique identifier
namestringVehicle name
descriptionstringVehicle description
vehicle_classstringVehicle class/type
lengthstringVehicle length
pilotstringPilot ID
filmsarrayArray of film IDs
urlstringAPI URL for this vehicle
Full JSON Schema
{
  "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"
    }
  }
}

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