by jpbullalayao
Create and share teams easily with this Pokémon team builder and squad builder. Perfect for competitive players using Po
Converts Pokemon team data into shareable Pokepaste URLs by uploading formatted team compositions to pokepast.es. Takes detailed Pokemon stats, moves, and abilities and creates links for easy sharing.
Pokepaste is a community-built MCP server published by jpbullalayao that provides AI assistants with tools and capabilities via the Model Context Protocol. Create and share teams easily with this Pokémon team builder and squad builder. Perfect for competitive players using Po It is categorized under productivity. This server exposes 1 tool that AI clients can invoke during conversations and coding sessions.
You can install Pokepaste in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Pokepaste is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
We wired Pokepaste into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Pokepaste has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Useful MCP listing: Pokepaste is the kind of server we cite when onboarding engineers to host + tool permissions.
Pokepaste is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We evaluated Pokepaste against two servers with overlapping tools; this profile had the clearer scope statement.
We wired Pokepaste into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
We wired Pokepaste into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Pokepaste is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Pokepaste is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Pokepaste reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 51
MCP server for creating Pokémon pastes (pokepastes)
<a href="https://glama.ai/mcp/servers/@jpbullalayao/pokemon-paste-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@jpbullalayao/pokemon-paste-mcp/badge" alt="Pokemon Paste Server MCP server" /> </a>npm install -g pokemon-paste-mcp
npm install
npm run build
The server provides a create_pokepaste tool that accepts Pokemon set data and creates a Pokepaste URL.
Creates a Pokepaste from an array of Pokemon set objects.
Parameters:
pokemon (array, required): Array of Pokemon set objectstitle (string, optional): Title for the pasteauthor (string, optional): Author namenotes (string, optional): Additional notesPokemon Set Object Structure:
{
"name": "string",
"species": "string",
"item": "string",
"ability": "string",
"moves": ["string", "string", "string", "string"],
"nature": "string",
"gender": "string",
"evs": {
"hp": 0,
"atk": 252,
"def": 0,
"spa": 4,
"spd": 0,
"spe": 252
},
"ivs": {
"hp": 31,
"atk": 31,
"def": 31,
"spa": 31,
"spd": 31,
"spe": 31
},
"level": 50,
"shiny": false,
"happiness": 255,
"pokeball": "Poke Ball",
"hpType": "Electric",
"dynamaxLevel": 10,
"gigantamax": false,
"teraType": "Electric"
}
Example Usage:
{
"pokemon": [
{
"name": "Pikachu",
"species": "Pikachu",
"item": "Light Ball",
"ability": "Static",
"moves": ["Thunderbolt", "Quick Attack", "Iron Tail", "Agility"],
"nature": "Jolly",
"gender": "M",
"evs": { "hp": 0, "atk": 252, "def": 0, "spa": 4, "spd": 0, "spe": 252 },
"ivs": { "hp": 31, "atk": 31, "def": 31, "spa": 31, "spd": 31, "spe": 31 },
"level": 50
}
],
"title": "My Team",
"author": "Trainer"
}
Configure your MCP client (Claude Desktop, Cursor, etc.):
Using remote npm package:
{
"mcpServers": {
"pokemon-paste": {
"command": "npx",
"args": ["pokemon-paste-mcp"],
"env": {}
}
}
}
Local development:
{
"mcpServers": {
"pokemon-paste": {
"command": "node",
"args": ["/path/to/pokemon-paste-mcp/dist/index.js"],
"env": {}
}
}
}
You can test the local MCP server using the MCP Inspector:
npm run build
npx @modelcontextprotocol/inspector node path/to/pokemon-paste-mcp/dist/index.js
If you want to test the MCP server directly with your MCP client, use this complete test input:
{
"pokemon": [
{
"name": "Pikachu",
"species": "Pikachu",
"item": "Light Ball",
"ability": "Static",
"moves": ["Thunderbolt", "Quick Attack", "Iron Tail", "Agility"],
"nature": "Jolly",
"gender": "M",
"evs": { "hp": 0, "atk": 252, "def": 0, "spa": 4, "spd": 0, "spe": 252 },
"ivs": { "hp": 31, "atk": 31, "def": 31, "spa": 31, "spd": 31, "spe": 31 },
"level": 50,
"shiny": false
},
{
"name": "Charizard",
"species": "Charizard",
"item": "Charcoal",
"ability": "Blaze",
"moves": ["Flamethrower", "Air Slash", "Solar Beam", "Roost"],
"nature": "Modest",
"gender": "M",
"evs": { "hp": 4, "atk": 0, "def": 0, "spa": 252, "spd": 0, "spe": 252 },
"ivs": { "hp": 31, "atk": 0, "def": 31, "spa": 31, "spd": 31, "spe": 31 },
"level": 50,
"teraType": "Fire"
},
{
"name": "Alakazam",
"species": "Alakazam",
"item": "Life Orb",
"ability": "Magic Guard",
"moves": ["Psychic", "Focus Blast", "Shadow Ball", "Recover"],
"nature": "Timid",
"gender": "M",
"evs": { "hp": 4, "atk": 0, "def": 0, "spa": 252, "spd": 0, "spe": 252 },
"ivs": { "hp": 31, "atk": 0, "def": 31, "spa": 31, "spd": 31, "spe": 31 },
"level": 50,
"shiny": true,
"pokeball": "Ultra Ball"
}
],
"title": "Sample Competitive Team",
"author": "Pokemon Trainer",
"notes": "A balanced team with Pikachu as the main attacker, Charizard for coverage, and Alakazam for special sweeping."
}
This test input includes:
The expected output should be a Pokepaste URL that you can visit to see the formatted team.
Interested in the progress of this project? Feel free to follow the repo for live updates!
If you need to get a hold of me regarding this project, feel free to either:
If you're interested in helping to fund this project, you can support me here. Any and all support is greatly appreciated!
MIT
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.