pokemon-battle-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pokemon-battle-mcpCalculate damage from Garchomp to Landorus-T."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pokémon Battle Helper MCP Server
A TypeScript MCP server for Pokémon Champions battle assistance.
For the canonical design, data sources, battle model, tool schemas, solver behavior, and test strategy, see Architecture.md.
Tools
The server registers these MCP tools:
get_meta_snapshotget_pokemon_optionscalculate_statscheck_damage_matchupoptimize_offensive_spreadoptimize_survival_spreadoptimize_speed_spreadget_speed_tiers
All tools expose input/output schemas through MCP tools/list.
Related MCP server: Pokémon VGC Damage Calculator MCP Server
Install / build / test
npm install
npm run build
npm testnpm test runs a pretest build and includes MCP stdio e2e tests that start dist/index.js, connect with the real @modelcontextprotocol/sdk client, call tools, and verify tool schemas.
Run as an MCP server
npm run build
node dist/index.jsExample MCP client config:
{
"mcpServers": {
"pokemon-battle": {
"command": "node",
"args": ["/absolute/path/to/pokemon-battle-mcp/dist/index.js"]
}
}
}Live meta defaults
The implementation uses Pikalytics English live data for the current Pokémon Champions ranked ladder. Default meta URL shape:
https://www.pikalytics.com/api/p/2026-05/battledataregmbs3-1760
https://www.pikalytics.com/api/p/2026-05/battledataregmbs3-1760/garchompget_meta_snapshot and get_pokemon_options accept optional format request fields (single/double; default double). Pikalytics' battledataregmbs3 key is the Champions doubles ladder, so format currently does not change the queried dataset. The season/regulation key (battledataregmbs3) and rating cutoff (1760) are internal constants; update them when the live regulation changes. The data month (YYYY-MM) is discovered automatically — a preferred month is tried first, then recent months are probed newest-first — because Pikalytics serves the literal JSON false for months without data.
Pokémon name handling
All tools accept any common spelling of a Pokémon name and normalize it server-side (see src/utils/pokemon-name.ts):
Showdown forme names and aliases:
Basculegion-F,lando-t,Urshifu-Rapid-Strike.PokeAPI/Pikalytics-style slugs:
basculegion-female,urshifu-rapid-strike.Space/punctuation variants:
Rotom Wash,Sirfetch'd.
Material corrections (e.g. basculegion-female -> Basculegion-F) are reported in inputCorrections. For get_pokemon_options, a base-species request resolves to the only matching meta forme when unambiguous (Floette -> Floette-Mega, with a formeResolved correction); if several formes are ranked, the tool returns an error listing the candidates. When Pikalytics has no page for the requested forme and base-forme data is used instead, the response carries an explicit warning (formeDataFallback) instead of silently returning the wrong forme's data. Unknown names produce did-you-mean suggestions.
Calc-oriented tool handlers (calculate_stats, check_damage_matchup, and the SP optimizers)
also guard against the common LLM mistake of sending a bare base species for a current-format
forme request: if the submitted name is a canonical base species and the current meta has exactly
one matching forme, the handler rewrites it and reports formeResolved in inputCorrections
before doing the calculation. Ambiguous cases still require the client/model to specify the forme.
Recommended client/system instruction:
For Pokémon Champions build, Mega, forme, damage, or speed questions, call get_pokemon_options
first for each named Pokémon and use the returned canonical Pokémon name/build in calculator
tools. Do not guess a base species when the user requested a Mega or forme. Item choices should
be passed exactly as provided by the user; this MCP does not validate item legality.Mega forme ability handling
When a request uses a Mega forme, the server canonicalizes stale or missing abilities to the fixed Mega ability before calculation and reports the change in inputCorrections plus modifierBreakdown. get_pokemon_options also returns the Mega ability for Mega forme requests, even when move/item/spread data has to come from a base-form meta page.
If the ability has already been changed in battle by Skill Swap, Worry Seed, Entrainment, etc., clients should send the current effective ability and mark it explicitly with pokemon.abilitySource: "battle-changed" or an active ability-change effect such as { "id": "abilitychanged" }, { "id": "skillswap" }, or { "id": "worryseed" }. For ability suppression such as Gastro Acid, keep the actual ability and use state.abilityEffect: "inactive".
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityDmaintenanceAn MCP server that provides detailed Pokémon information by integrating with the PokeAPI, allowing users to fetch comprehensive data about Pokémon and simulate battles.Last updated22
- AlicenseBqualityDmaintenanceAn MCP-compliant server that enables AI agents to perform accurate Pokémon battle damage calculations using the Smogon calculator, supporting comprehensive input handling for Pokémon stats, moves, abilities, and field conditions.Last updated1961MIT
- Flicense-qualityDmaintenanceAn MCP server that enables accurate status and damage calculations for third-generation Pokémon games, including support for complex factors like weather, abilities, and items. It also provides tools for calculating optimal effort value (EV) distributions through brute-force damage matrix simulations.Last updated
- Alicense-qualityAmaintenanceMCP server for Pokémon battle advising: provides type matchups, damage calculation, party analysis, and move/ability data for AI agents like Claude Code and Codex.Last updated15MIT
Related MCP Connectors
A TypeScript MCP server for Home Assistant, enabling programmatic management of entities, automati…
An MCP server for deep research or task groups
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hahastudio/pokemon-battle-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server