pokemon-world-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-world-mcpStart a new game with charmander"
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 World MCP
Agent playground: explore a small map, battle and catch real-named Pokémon via MCP tools.
Public URL (planned):
https://poke.vanscoding.comMCP endpoint:
https://poke.vanscoding.com/mcp/(local:http://127.0.0.1:8080/mcp/)Auth: same as vans-mcp —
Authorization: Bearer vcr_sk_...(Neonapi_keys) or localMCP_DEV_BYPASS_KEYSaves: Neon table
pokemon_saveswhenDATABASE_URLis set; otherwise local SQLite under$HOME/.pokemon-world-mcp/
This project is separate from vans-mcp-server (Notion / Calendar / Gmail).
Goal (V1)
Collect 3 different species in your party.
Starter (required): bulbasaur | charmander | squirtle at Lv5.
Related MCP server: PokeMCP
Progression
Exp (official curves): each species has a PokéAPI
growth_rateand cumulative total-exp table (six rates).party.expis total experience.Battle yield: active Pokémon gains
floor(enemy.base_experience × enemy.level / 7)on win or catchLevel-up: when total exp reaches the next level threshold; stats scale with level; may learn moves from the species learnset
Moves: max 4. If a new move is offered while full, resolve with
battle_action(replace_move, forget_move_name=...)orskip_learnbefore exploring/battling againEvolution: automatic at species thresholds (e.g. bulbasaur → ivysaur at 16)
Tools
Tool | When |
| Start / reset save (starter required) |
| Phase, position, party summary, pending learn |
| 3×3 nearby tiles (exploring) |
|
|
| Party details (level, exp, moves) |
| In battle (or pending learn) |
|
|
Tip for student agents: after each tool call, narrate the result to the human before the next action.
Local development
cd C:\Users\mz038\Desktop\peas-agent\pokemon-world-mcp
uv sync --extra dev
$env:MCP_DEV_BYPASS_KEY = "vcr_sk_dev_local_only"
# Optional — production / shared Neon (same as vans):
# $env:DATABASE_URL = "postgresql://..."
uv run pokemon-world-mcpHealth:
http://127.0.0.1:8080/health(no key)MCP:
http://127.0.0.1:8080/mcp/with Bearer header
Without DATABASE_URL, saves go to SQLite at %USERPROFILE%\.pokemon-world-mcp\pokemon_world.db (override with SQLITE_PATH). Progress survives restarts. Production on Fly should set Neon DATABASE_URL — see docs/deploy-fly.md.
Tests
uv run pytestCursor / student Agent config (example)
Point MCP at this server (not mcp.vanscoding.com), same course API key:
{
"mcpServers": {
"pokemon-world": {
"url": "https://poke.vanscoding.com/mcp/",
"headers": {
"Authorization": "Bearer vcr_sk_YOUR_KEY"
}
}
}
}Local:
{
"mcpServers": {
"pokemon-world": {
"url": "http://127.0.0.1:8080/mcp/",
"headers": {
"Authorization": "Bearer vcr_sk_dev_local_only"
}
}
}
}Map notes
10×10 fixed map:
path,grass,water(blocked)~25% encounter chance on grass steps
Wild level ≈ party average ±2 (clamped 2–50)
Wild species by map quadrant (no starters in the wild):
Zone | Coordinates | Pool |
NW | x≤4, y≤4 | pidgey, rattata, jigglypuff |
NE | x≥5, y≤4 | pikachu, meowth, jigglypuff |
SW | x≤4, y≥5 | geodude, meowth, rattata |
SE | x≥5, y≥5 | gastly, geodude, pidgey |
Blackout: return to start, party healed
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/mz038197/pokemon-world-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server