search_characters

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

Search the Disney character database by name (e.g. “Mickey Mouse”, “Elsa”, “Stitch”). Returns matching characters with their film, TV-show, video-game and theme-park-attraction appearances plus an image URL. Matching is exact-ish on the name field.

Parameters

NameTypeRequiredDescription
namestringyesCharacter name to search for, e.g. “Mickey Mouse”.
limitnumbernoMax characters to return (default 10).

Example call

Arguments

{
  "name": "Mickey Mouse"
}

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":"search_characters","arguments":{"name":"Mickey Mouse"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_characters', {
  "name": "Mickey Mouse"
});

More examples

{
  "name": "Elsa",
  "limit": 5
}

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