film

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

Single film by id.

Parameters

NameTypeRequiredDescription
idstringyes

Example call

Arguments

{
  "id": "2baf70d1-42bb-4437-b413-cebf4994c1d6"
}

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":"film","arguments":{"id":"2baf70d1-42bb-4437-b413-cebf4994c1d6"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('film', {
  "id": "2baf70d1-42bb-4437-b413-cebf4994c1d6"
});

Response shape

FieldTypeDescription
idstringFilm unique identifier
titlestringFilm title
original_titlestringOriginal Japanese title
original_title_romanisedstringRomanized original title
descriptionstringFilm description
directorstringFilm director name
producerstringFilm producer name
release_datestringRelease date
running_timestringRunning time in minutes
rt_scorestringRotten Tomatoes score
peoplearrayArray of people IDs
speciesarrayArray of species IDs
locationsarrayArray of location IDs
vehiclesarrayArray of vehicle IDs
urlstringAPI URL for this film
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Film unique identifier"
    },
    "title": {
      "type": "string",
      "description": "Film title"
    },
    "original_title": {
      "type": "string",
      "description": "Original Japanese title"
    },
    "original_title_romanised": {
      "type": "string",
      "description": "Romanized original title"
    },
    "description": {
      "type": "string",
      "description": "Film description"
    },
    "director": {
      "type": "string",
      "description": "Film director name"
    },
    "producer": {
      "type": "string",
      "description": "Film producer name"
    },
    "release_date": {
      "type": "string",
      "description": "Release date"
    },
    "running_time": {
      "type": "string",
      "description": "Running time in minutes"
    },
    "rt_score": {
      "type": "string",
      "description": "Rotten Tomatoes score"
    },
    "people": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of people IDs"
    },
    "species": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of species IDs"
    },
    "locations": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of location IDs"
    },
    "vehicles": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of vehicle IDs"
    },
    "url": {
      "type": "string",
      "description": "API URL for this film"
    }
  }
}

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