dexMCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_pokemonA | Fetch a Pokemon summary for the given identifier. Args: name_or_dex: Pokemon name or national dex number. Returns: Summary stats, typing, and measurements for the Pokemon. |
| get_movesA | List the learnset for a Pokemon in a specific game. Args: name_or_dex: Pokemon name or national dex number. game: PokeAPI game identifier (e.g., "scarlet-violet"). Returns: Moves the Pokemon can learn in the requested game. |
| get_spritesA | Resolve a sprite URL for a Pokemon. Args: name_or_dex: Pokemon name or national dex number. side: Sprite side ("front" or "back"). variant: Sprite variant (e.g., "default", "shiny"). Returns: Sprite URL with the requested side and variant. |
| get_descriptionsA | Fetch localized Pokedex flavor text. Args: name_or_dex: Pokemon name or national dex number. language: Language code for flavor text. Returns: Mapping of game version to flavor text. |
| analyze_type_coverageA | Summarize defensive type coverage for a roster. Args: names_or_dexes: Pokemon names or dex numbers to analyze. Returns: Coverage report with matchup counts and notable weaknesses. |
| explore_abilitiesA | Retrieve ability details for a Pokemon. Args: name_or_dex: Pokemon name or national dex number. Returns: Ability names and effect text details. |
| plan_evolutionsA | Enumerate evolution paths that include the Pokemon. Args: name_or_dex: Pokemon name or national dex number. Returns: Evolution paths and triggers. |
| find_encountersA | Find wild encounter locations for a Pokemon. Args: name_or_dex: Pokemon name or national dex number. Returns: Encounter locations grouped by version and method. |
| get_breeding_infoA | Summarize breeding details for a Pokemon. Args: name_or_dex: Pokemon name or national dex number. game: Optional game identifier for egg move filtering. Returns: Breeding info including egg groups, hatch steps, and egg moves. |
| suggest_movesetA | Recommend a moveset for a Pokemon in a game. Args: name_or_dex: Pokemon name or national dex number. game: PokeAPI game identifier to scope learnsets. limit: Maximum number of recommendations to return. include_tm: Whether to include TM moves. Returns: Ranked move recommendations based on simple heuristics. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Tools largely target distinct aspects of Pokemon data. The only potential confusion is between get_moves (full learnset) and suggest_moveset (recommendations), but descriptions clearly differentiate them.
All tools follow a consistent verb_noun pattern with snake_case, using varied verbs (get, find, analyze, etc.) that reflect their actions.
10 tools is well-scoped for a Pokedex server, covering key data domains without unnecessary redundancy.
Covers most common Pokemon queries including stats, moves, abilities, evolutions, breeding, encounters, sprites, and type coverage. Minor gaps like a search tool or more detailed stat breakdowns, but core workflows are well covered.