search_digimon

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

Search the Digimon API by name (partial match) and list Digimon creatures. Omit name to list all. Returns id, name, and image for each match. Keyless.

Parameters

NameTypeRequiredDescription
namestringnoPartial Digimon name to search for. Omit to list all Digimon.
limitnumbernoMax results per page (default 20, max 100).
pagenumbernoZero-based page number (default 0).

Example call

Arguments

{
  "name": "Agumon"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_digimon', {
  "name": "Agumon"
});

More examples

{
  "name": "Digi",
  "limit": 50,
  "page": 0
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026