Wraps the PokéAPI so you can query Pokémon data from Claude without dealing with HTTP calls or auth. Part of the Pipeworx gateway, which means you can either use this standalone Pokemon endpoint or connect to their full gateway for 673+ data sources. The interesting bit is the ask_pipeworx tool that lets you ask questions in plain English instead of calling specific endpoints. Good for prototyping anything that needs Pokémon stats, move sets, or evolution chains without writing API integration code. Free and requires no authentication since PokéAPI itself is open.
Pokemon MCP — wraps PokéAPI (free, no auth required)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"pokemon": {
"url": "https://gateway.pipeworx.io/pokemon/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Pokemon data" })
The gateway picks the right tool and fills the arguments automatically.
MIT