
Pokémon MCP Server
This a MCP server that allows clients to fetch Pokemon Data via the official Pokemon API
what is Pokémon MCP Server?
Pokémon MCP Server is a Model Context Protocol (MCP) server that allows clients to fetch Pokémon data via the official PokéAPI.
how to use Pokémon MCP Server?
To use the server, clone the repository, install dependencies, and run the server using npm. You can also configure it with Claude for Desktop or test it using the MCP Inspector.
key features of Pokémon MCP Server?
- Fetch detailed information about specific Pokémon by name or ID using the get-pokemon tool.
- Get information about Pokémon types and their damage relations with the get-type tool.
- Search for Pokémon with pagination support using the search-pokemon tool.
- Retrieve details about specific Pokémon moves and abilities with the get-move and get-ability tools.
use cases of Pokémon MCP Server?
- Fetching detailed data about a Pokémon for a game or application.
- Analyzing Pokémon types for battle strategies.
- Creating a Pokémon database or application that requires dynamic data fetching.
FAQ from Pokémon MCP Server?
- Is there a limit to how many requests I can make?
Yes, the server uses the public PokéAPI, which has rate limiting. Please respect the API's usage limits.
- Can I run this server on Windows?
Yes, the server can be configured to run on both macOS and Windows.
- What programming language is this server built with?
The server is built with TypeScript.
Pokémon MCP Server
This is a Model Context Protocol (MCP) server that provides tools for fetching Pokémon data from the PokéAPI.
Features
The server provides the following tools:
- get-pokemon: Fetch detailed information about a specific Pokémon by name or ID
- get-type: Get information about a Pokémon type and its damage relations
- search-pokemon: Search for Pokémon with pagination support
- get-move: Get details about a specific Pokémon move
- get-ability: Get information about a Pokémon ability
Installation
# Clone the repository
git clone https://github.com/yourusername/pokemon-mcp-server.git
cd pokemon-mcp-server
# Install dependencies
npm install
# Build the project
npm run build
Usage
Running the Server
npm start
Using with Claude for Desktop
To use this server with Claude for Desktop, add it to your Claude for Desktop configuration file:
For macOS:
{
"mcpServers": {
"pokemon": {
"command": "node",
"args": ["/path/to/pokemon-mcp-server/build/pokemon-server.js"]
}
}
}
For Windows:
{
"mcpServers": {
"pokemon": {
"command": "node",
"args": ["C:\\path\\to\\pokemon-mcp-server\\build\\pokemon-server.js"]
}
}
}
Testing with MCP Inspector
You can test the server using the MCP Inspector:
npx @modelcontextprotocol/inspector node build/pokemon-server.js
Example Tool Usage
Fetching a Pokémon
Tool: get-pokemon
Parameters: {"nameOrId": "pikachu"}
Getting Type Information
Tool: get-type
Parameters: {"type": "electric"}
Searching for Pokémon
Tool: search-pokemon
Parameters: {"limit": 5, "offset": 0}
Getting Move Information
Tool: get-move
Parameters: {"nameOrId": "thunderbolt"}
Getting Ability Information
Tool: get-ability
Parameters: {"nameOrId": "static"}
API Limitations
This server uses the public PokéAPI, which has rate limiting. Please be respectful of the API's usage limits.
License
MIT