Pokémon
liveGamesEntertainmentPokémon details, type effectiveness, abilities, and evolution chains from PokéAPI
Tools
get_pokemonrequired: nameGet Pokémon details by name or ID. Returns name, ID, types, base stats, abilities, height, weight, and sprites.
namereqstringPokémon name (e.g., "pikachu") or numeric ID (e.g., "25")Try it
get_typerequired: typeGet type effectiveness information and Pokémon list for a given type. Returns damage relations and the first 20 Pokémon of that type.
typereqstringType name (e.g., "fire", "water", "electric")Try it
get_abilityrequired: abilityGet ability details including effect description and the list of Pokémon that can have this ability.
abilityreqstringAbility name (e.g., "overgrow", "blaze", "static")Try it
get_evolution_chainrequired: idGet the full evolution chain by chain ID. Returns each species with its evolution trigger, minimum level, and evolution item.
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.
curl -X POST https://gateway.pipeworx.io/pokemon/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_pokemon", {"name":"example"});// Or ask in plain English:
const answer = await px.ask("pokémon details, type effectiveness, abilities, and evolution chains from pokéapi");