# Pokémon Information Server

Provide detailed Pokémon data and information through a standardized MCP interface. Enable LLMs and applications to query and retrieve Pokémon-related content efficiently. Enhance your agents with ri…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add MetehanGZL/pokemcp

# Browse available tools
npx -y @smithery/cli@latest tool list MetehanGZL/pokemcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get MetehanGZL/pokemcp random_pokemon

# Call a tool
npx -y @smithery/cli@latest tool call MetehanGZL/pokemcp random_pokemon '{}'
```

## Tools (7)

- `random_pokemon` — Rastgele bir Pokémon seç
- `random_pokemon_from_region` — Belirli bir bölgeden rastgele bir Pokémon seç
- `random_pokemon_by_type` — Belirli bir türden rastgele bir Pokémon seç
- `pokemon_query` — Doğal dil ile Pokémon sorguları yap
- `start_battle` — Start a battle between two Pokémon
- `make_move` — Make a move in the current battle
- `use_item` — Use an item in battle

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get MetehanGZL/pokemcp <tool-name>
```

---

Source: https://github.com/MetehanGZL/PokeMCP
