Pokémon

liveGamesEntertainment

Pokémon details, type effectiveness, abilities, and evolution chains from PokéAPI

4tools
0msauth
free tier50 calls/day

Tools

get_pokemonrequired: name

Get Pokémon details by name or ID. Returns name, ID, types, base stats, abilities, height, weight, and sprites.

Parameters
NameTypeDescription
namereqstringPokémon name (e.g., "pikachu") or numeric ID (e.g., "25")
Try it
get_typerequired: type

Get type effectiveness information and Pokémon list for a given type. Returns damage relations and the first 20 Pokémon of that type.

Parameters
NameTypeDescription
typereqstringType name (e.g., "fire", "water", "electric")
Try it
get_abilityrequired: ability

Get ability details including effect description and the list of Pokémon that can have this ability.

Parameters
NameTypeDescription
abilityreqstringAbility name (e.g., "overgrow", "blaze", "static")
Try it
get_evolution_chainrequired: id

Get the full evolution chain by chain ID. Returns each species with its evolution trigger, minimum level, and evolution item.

Parameters
NameTypeDescription
idreqnumberEvolution chain ID (e.g., 1 for Bulbasaur line, 10 for Caterpie line)
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/pokemon/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/pokemon/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_pokemon","arguments":{"name": "test"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_pokemon", {"name":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("pokémon details, type effectiveness, abilities, and evolution chains from pokéapi");