Pokémon MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Pokémon MCPTell me about Pikachu"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pokémon MCP
MCP server mínimo con tools contra PokéAPI, sin UI todavía.
Sigue el flujo de la documentación de OpenAI (Build an MCP server): primero tools + HTTP streamable, después UI.
Requisitos
Node.js 18+
Related MCP server: Pokemon MCP Server
Instalación
npm installTools
Tool | Uso |
| Listar Pokémon paginados ( |
| Detalle por nombre o id ( |
| Matchups y Pokémon de un tipo ( |
Todas son read-only y consultan la API pública de PokéAPI (openWorldHint: true).
Ejecutar
Cursor (stdio)
npm run devConfiguración MCP en Cursor. Sustituye PATH_TO_REPO por la ruta absoluta de este proyecto:
{
"mcpServers": {
"pokemon-mcp": {
"command": "node",
"args": [
"./node_modules/tsx/dist/cli.mjs",
"src/index.ts"
],
"cwd": "PATH_TO_REPO"
}
}
}Si Cursor no encuentra node (por ejemplo con nvm), usa la ruta absoluta de tu binario de Node en command.
ChatGPT / Inspector (HTTP en /mcp)
npm run dev:httpDeberías ver: Pokémon MCP server listening on http://localhost:8787/mcp
Probar con MCP Inspector:
npx @modelcontextprotocol/inspector@latest --server-url http://localhost:8787/mcp --transport httpSmoke test
npm run smokeSiguiente paso
Cuando las tools funcionen end-to-end, puedes añadir UI con Add UI to your MCP server (registerAppTool + resource HTML).
This server cannot be deployed
Maintenance
Related MCP Connectors
Look up Pokémon, moves, abilities, items, natures, and type matchups from PokéAPI v2.
Provide detailed Pokémon data and information through a standardized MCP interface. Enable LLMs an…
Pokemon MCP — wraps PokéAPI (free, no auth required)
Look up Pokemon TCG Pocket cards, sets, packs, and evaluate decks with battle simulations.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables users to retrieve Pokémon statistics, sprite images, and complete information using the PokeAPI. Supports querying by Pokémon name or ID number to get base stats, various sprite URLs including shiny variants, and comprehensive Pokémon data.58 npmApache 2.0
- FlicenseNot gradedqualityDmaintenanceProvides Pokemon information from PokeAPI including stats, types, height, and weight. Enables looking up Pokemon by name/ID, getting random Pokemon by type, and comparing Pokemon side-by-side.-
- AlicenseNot gradedqualityDmaintenanceEnables fetching detailed Pokémon data from PokéAPI, including Pokémon info, types, moves, abilities, and search with pagination.8 npm3Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEnables fetching Pokémon data from PokeAPI, searching for Pokémon and moves, and simulating battles between two Pokémon with type effectiveness and status effects.MIT