get_digimon

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

Get full details for one Digimon by name or numeric id: its level, type, attribute, fields, evolution lines, and English description. Keyless.

Parameters

NameTypeRequiredDescription
namestringyesA Digimon name like “Agumon” or a numeric id like “1”.

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":"get_digimon","arguments":{"name":"Agumon"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "name": "1"
}

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