Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"pokemon-mcp-server": {
"args": [
"pokeapi-mcp-server@1.4.0"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Empower your AI with Pokédex powers! Fetch and explore Pokémon data seamlessly via PokeAPI.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'pokeapi-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked pokeapi-mcp-server against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment
AI Skills, MCP Tools, and CLI for Unity Engine. Full AI develop and test loop. Use cli for quick setup. Efficient token usage, advanced tools. Any C# method may be turned into a tool by a single line. Works with Claude Code, Gemini, Copilot, Cursor and any other absolutely for free.
Music studio: ABC notation composition and Strudel live coding with ext-apps UI.
YouTube as a queryable database for AI agents. 41 tools, zero config.
The official ElevenLabs MCP server
MCP Security Weekly
Get CVE alerts and security updates for io.github.Asthanaji05/pokeapi-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Empower your AI with Pokédex powers! Fetch and explore Pokémon data seamlessly via PokeAPI.
Server: io.github.Asthanaji05/pokeapi-mcp-server
npm package: pokeapi-mcp-server
This project provides a Model Context Protocol (MCP) Server that enables Large Language Models (LLMs) to make tool calls for Pokémon-related data. It integrates with the PokeAPI to offer access to 47 different Pokémon-related endpoints.
The PokeAPI MCP Server acts as a bridge, allowing AI assistants to fetch and utilize comprehensive Pokémon data directly from the PokeAPI. This facilitates the development of intelligent applications that require accurate and up-to-date information about Pokémon, moves, items, game mechanics, and more.
The server provides 47 Pokémon-related tools, covering a wide range of data:
getPokemonByName, getPokemonSpeciesByName, getPokemonFormByName, getPokemonColorByName, getPokemonHabitatByName, getPokemonShapeByName.getMoveByName, getMoveCategoryByName, getMoveDamageClassByName, getMoveAilmentByName, getMoveBattleStyleByName, getMoveLearnMethodByName, getMoveTargetByName.getItemByName, getItemCategoryByName, getItemAttributeByName, getItemFlingEffectByName, getItemPocketByName.getTypeByName, getStatByName, getAbilityByName, getGrowthRateByName, getNatureByName, getEggGroupByName, getGenerationByName, getVersionByName, getVersionGroupByName, getPokedexByName, getLanguageByName.getLocationByName, getLocationAreaByName, getEncounterMethodByName, getEncounterConditionByName, getEncounterConditionValueByName.getBerryByName, getBerryFirmnessByName, getBerryFlavorByName.getContestTypeByName, getContestEffectById, getSuperContestEffectById.getEvolutionChainById, getEvolutionTriggerByName.getCharacteristicById, getMachineById, getPalParkAreaByName, getPokeathlonStatByName, getRegionByName.npm install -g pokeapi-mcp-server
After installation, add the server to your MCP client configuration:
Add to Claude>claude_desktop_config.json
{
"mcpServers": {
"pokemon-mcp-server": {
"command": "npx",
"args": [
"pokeapi-mcp-server@1.4.0"
]
}
}
}
Add to .cursor/mcp.json:
{
"mcpServers": {
"pokemon-mcp-server": {
"command": "npx",
"args": [
"pokeapi-mcp-server@1.4.0"
]
}
}
}
Or if installed globally:
{
"mcpServers": {
"pokemon-mcp-server": {
"command": "npx",
"args": [
"pokeapi-mcp-server@1.4.0"
]
}
}
}
Add to .gemini/settings.json:
{
"mcpServers": {
"pokemon-mcp-server": {
"command": "npx",
"args": [
"--yes",
"pokeapi-mcp-server@1.4.0"
],
"transport": "stdio",
"trust": true,
"env": {
"MCP_HTTP_SERVER_URL": "https://pokemon-mcp-server-vs8m.onrender.com"
}
}
}
}