Pokémon

live Games

Poké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
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
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
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

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");

Related packs

Other Pipeworx packs in the same categories (Games):