species_one

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

Single species by id.

Parameters

NameTypeRequiredDescription
idstringyes

Example call

Arguments

{
  "id": "af3910a6-429f-4c74-abdf-23784594cea6"
}

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":"species_one","arguments":{"id":"af3910a6-429f-4c74-abdf-23784594cea6"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('species_one', {
  "id": "af3910a6-429f-4c74-abdf-23784594cea6"
});

Response shape

FieldTypeDescription
idstringSpecies unique identifier
namestringSpecies name
classificationstringSpecies classification
eye_colorsstringEye colors for species
hair_colorsstringHair colors for species
urlstringAPI URL for this species
peoplearrayArray of person IDs
filmsarrayArray of film IDs
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Species unique identifier"
    },
    "name": {
      "type": "string",
      "description": "Species name"
    },
    "classification": {
      "type": "string",
      "description": "Species classification"
    },
    "eye_colors": {
      "type": "string",
      "description": "Eye colors for species"
    },
    "hair_colors": {
      "type": "string",
      "description": "Hair colors for species"
    },
    "url": {
      "type": "string",
      "description": "API URL for this species"
    },
    "people": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of person IDs"
    },
    "films": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Array of film IDs"
    }
  }
}

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 7, 2026