Pokémon
live GamesPokémon details, type effectiveness, abilities, and evolution chains from PokéAPI
4 tools
0ms auth
free tier 50 calls/day
Tools
get_pokemon
required: name Get Pokémon details by name or ID. Returns name, ID, types, base stats, abilities, height, weight, and sprites.
Parameters
Name Type Description
name req string Pokémon name (e.g., "pikachu") or numeric ID (e.g., "25") Try it
Response
get_type
required: 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
Name Type Description
type req string Type name (e.g., "fire", "water", "electric") Try it
Response
get_ability
required: ability Get ability details including effect description and the list of Pokémon that can have this ability.
Parameters
Name Type Description
ability req string Ability name (e.g., "overgrow", "blaze", "static") Try it
Response
get_evolution_chain
required: id Get the full evolution chain by chain ID. Returns each species with its evolution trigger, minimum level, and evolution item.
Parameters
Name Type Description
id req number Evolution chain ID (e.g., 1 for Bulbasaur line, 10 for Caterpie line) Try it
Response
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"}}}'