get_character

Pack: disney · Endpoint: https://gateway.pipeworx.io/disney/mcp

Fetch a single Disney character by numeric id (_id). Returns the full record: films, short films, TV shows, video games, park attractions, allies, enemies, image URL and source URL.

Parameters

NameTypeRequiredDescription
idnumber,stringyesThe numeric character _id, e.g. 4703 (Mickey Mouse).

Example call

Arguments

{
  "id": 4703
}

curl

curl -X POST https://gateway.pipeworx.io/disney/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_character","arguments":{"id":4703}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_character', {
  "id": 4703
});

More examples

{
  "id": "6350"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "disney": {
      "url": "https://gateway.pipeworx.io/disney/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 7, 2026