list_characters

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

List/paginate the Disney character database. Returns a page of characters (id, name, image URL) plus total count and total page count. Useful for browsing the full catalog.

Parameters

NameTypeRequiredDescription
pagenumbernoPage number, 1-based (default 1).
pageSizenumbernoCharacters per page (default 20).

Example call

Arguments

{
  "page": 1
}

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":"list_characters","arguments":{"page":1}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('list_characters', {
  "page": 1
});

More examples

{
  "page": 2,
  "pageSize": 50
}

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