Pokémon
live GamesPokémon details, type effectiveness, abilities, and evolution chains from PokéAPI
Tools
get_pokemon
required: name Get Pokémon details by name or ID. Returns name, ID, types, base stats, abilities, height, weight, and sprites.
name req string Pokémon name (e.g., "pikachu") or numeric ID (e.g., "25") Try it
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.
type req string Type name (e.g., "fire", "water", "electric") Try it
get_ability
required: ability Get ability details including effect description and the list of Pokémon that can have this ability.
ability req string Ability name (e.g., "overgrow", "blaze", "static") Try it
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.
id req number Evolution 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"); Related packs
Other Pipeworx packs in the same categories (Games):