Pokemon
Provides access to a comprehensive Pokemon database through a standardized MCP interface.
Pokemon MCP Server
A Model Context Protocol (MCP) server that provides Pokemon data through standardized tools. This monorepo contains both the MCP server and data ingestion service for fetching Pokemon data from PokeAPI.
Architecture
This is a PNPM monorepo with two main packages:
- pokemon-mcp-server: MCP server that exposes Pokemon data through standardized tools
- pokemon-mcp-ingestion: Data ingestion service that fetches from PokeAPI and stores in SQLite
The system uses a shared SQLite database (data/pokemon.sqlite) for Pokemon data storage.
Features
MCP Tools Available
get_pokemon- Get detailed information about a specific Pokemonsearch_pokemon- Search Pokemon by name, type, or other criteriaget_strongest_pokemon- Find the strongest Pokemon by various statsget_pokemon_stats- Get detailed stats for a Pokemoncompare_pokemon- Compare stats between two Pokemonget_type_effectiveness- Get type effectiveness information
Data Coverage
- Complete Pokemon data from PokeAPI
- Stats, types, abilities, and more
- Type effectiveness relationships
- Searchable by multiple criteria
Quick Start
Prerequisites
- Node.js 18+
- PNPM
- Git
Installation
- Clone the repository:
git clone https://github.com/grovesjosephn/pokemcp.git
cd pokemcp
- Install dependencies:
bun install
- Set up the database:
./scripts/setup.sh
- Build all packages:
bun run build
Usage
Running the MCP Server
# Development mode (with hot reload)
bun run dev
# Production mode
cd packages/pokemon-mcp-server
bun run start
Testing with MCP Inspector
# Visual GUI testing
cd packages/pokemon-mcp-server
bun run inspect
# CLI testing
bun run inspect:cli
Data Ingestion
# Run data ingestion
cd packages/pokemon-mcp-ingestion
bun run start
Claude Desktop Integration
Option 1: NPM Package (Recommended)
Install the server globally:
cd packages/pokemon-mcp-server
bun run build
npm link
Configure Claude Desktop:
{
"mcpServers": {
"pokemon": {
"command": "pokemon-mcp-server",
"env": {
"POKEMON_DATA_DIR": "/path/to/pokemcp/data"
}
}
}
}
Option 2: Direct Node Execution
{
"mcpServers": {
"pokemon": {
"command": "node",
"args": ["/path/to/pokemcp/packages/pokemon-mcp-server/dist/server.js"],
"env": {
"POKEMON_DATA_DIR": "/path/to/pokemcp/data"
}
}
}
}
Option 3: Development Mode
{
"mcpServers": {
"pokemon": {
"command": "bun",
"args": ["/path/to/pokemcp/packages/pokemon-mcp-server/server.ts"],
"env": {
"POKEMON_DATA_DIR": "/path/to/pokemcp/data"
}
}
}
}
Development
Workspace Commands
bun run build # Build all packages
bun run dev # Run all packages in development mode
bun run test # Run tests for all packages
bun run format # Format all files
bun run format:check # Check formatting
Server Package Commands
cd packages/pokemon-mcp-server
bun run build # Compile TypeScript
bun run dev # Watch mode
bun run start # Run server
bun run inspect # Run MCP Inspector GUI
bun run inspect:cli # Run MCP Inspector CLI
bun test # Run tests
Ingestion Package Commands
cd packages/pokemon-mcp-ingestion
bun run build # Compile TypeScript
bun run dev # Watch mode
bun run start # Run ingestion
bun test # Run tests
Testing
The project uses bun's built-in test runner:
# Run all tests
bun run test
# Run specific package tests
cd packages/pokemon-mcp-server && bun test
cd packages/pokemon-mcp-ingestion && bun test
Database Schema
The SQLite database includes tables for:
pokemon- Basic Pokemon informationstats- Pokemon stats (HP, Attack, Defense, etc.)types- Pokemon types and relationshipsabilities- Pokemon abilities
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests
- Run
bun run format - Submit a pull request
Commit Guidelines
Use conventional commit format:
<type>[optional scope]: <description>
Examples:
- feat(server): add Pokemon evolution chain tool
- fix(ingestion): handle missing species URL gracefully
- docs: update integration guide
License
MIT License - see LICENSE file for details
Links
관련 서버
CoreModels MCP Server
Manage graph-based data models, schemas, and ontologies with CoreModels. 16 MCP tools for visual data modeling with full JSON Schema support.
InterSystems IRIS
Interact with and automate InterSystems IRIS databases.
Blackbaud FE NXT by CData
A read-only MCP server for Blackbaud FE NXT by CData, enabling LLMs to query live data. Requires a separate CData JDBC Driver.
Gel
Provides tools and resources for coding agents to interact with the Gel database, including automatic project configuration for query builders and ORMs.
OpenSearch MCP Server
An MCP server for interacting with OpenSearch clusters, configured via environment variables.
mem0-mcp-selfhosted
Self-hosted mem0 MCP server for Claude Code. Run a complete memory server against self-hosted Qdrant + Neo4j + Ollama while using Claude as the main LLM.
Memory Custom : PouchDB
Extends the Memory server with PouchDB for robust document-based storage, custom memory file paths, and interaction timestamping.
MCP Yahoo Finance
Access real-time stock prices, company information, and financial data from Yahoo Finance.
MCP Registry - Lyra
Lyra Registry is a standalone API service that catalogs, scores, and serves metadata for all tools in the Lyra ecosystem. It enables discovery, evaluation, and integration of 800+ crypto, blockchain, DeFi, memecoin, NFT, metaverse, trading tools, MCP tools.
Snowflake Stored Procedure Integration
Integrates and executes Snowflake stored procedures through an MCP server.