film
Pack: studio-ghibli · Endpoint: https://gateway.pipeworx.io/studio-ghibli/mcp
Single film by id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
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
| Field | Type | Description |
|---|---|---|
id | string | Film unique identifier |
title | string | Film title |
original_title | string | Original Japanese title |
original_title_romanised | string | Romanized original title |
description | string | Film description |
director | string | Film director name |
producer | string | Film producer name |
release_date | string | Release date |
running_time | string | Running time in minutes |
rt_score | string | Rotten Tomatoes score |
people | array | Array of people IDs |
species | array | Array of species IDs |
locations | array | Array of location IDs |
vehicles | array | Array of vehicle IDs |
url | string | API 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.