location
Pack: studio-ghibli · Endpoint: https://gateway.pipeworx.io/studio-ghibli/mcp
Single location by id.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
Arguments
{
"id": "6e173f76-584d-4255-bb08-b42b8d1d91d0"
}
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":"location","arguments":{"id":"6e173f76-584d-4255-bb08-b42b8d1d91d0"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('location', {
"id": "6e173f76-584d-4255-bb08-b42b8d1d91d0"
});
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Location unique identifier |
name | string | Location name |
climate | string | Climate description |
terrain | string | Terrain description |
surface_water | string | Surface water percentage |
residents | array | Array of resident IDs |
films | array | Array of film IDs |
url | string | API URL for this location |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Location unique identifier"
},
"name": {
"type": "string",
"description": "Location name"
},
"climate": {
"type": "string",
"description": "Climate description"
},
"terrain": {
"type": "string",
"description": "Terrain description"
},
"surface_water": {
"type": "string",
"description": "Surface water percentage"
},
"residents": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of resident IDs"
},
"films": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of film IDs"
},
"url": {
"type": "string",
"description": "API URL for this location"
}
}
}
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.