/
by ai.smithery
Provide detailed Pokémon data and information through a standardized MCP interface. Enable LLMs an…
Server configuration and capabilities from the MCP manifest
Size: 2,242 bytes (561 tokens)
Tools Found: 7
Analysis ID: xywwoub1
This MCP server provides various tools for interacting with Pokémon data, including random Pokémon selection, battle initiation, and natural language queries.
Stars
Registry ID: 67952a30-96dc-43c9-95d0-f4e9604d8863
Added to Registry: 9/21/2025
Last Updated: 9/22/2025
Last Seen: 9/22/2025
Default Branch: main
Last Push: 5/28/2025
Open Issues: 0
Historical performance and growth metrics over time
{
"name": "pokedex",
"tags": [
"pokemon",
"pokedex",
"mcp",
"model-context-protocol"
],
"tools": [
{
"name": "random_pokemon",
"description": "Rastgele bir Pokémon seç",
"input_schema": {
"type": "object",
"required": [],
"properties": {}
},
"output_schema": {
"content": [
{
"text": "string",
"type": "text"
}
]
}
},
{
"name": "random_pokemon_from_region",
"description": "Belirli bir bölgeden rastgele bir Pokémon seç",
"input_schema": {
"type": "object",
"required": [
"region"
],
"properties": {
"region": {
"type": "string",
"description": "Pokémon bölgesi (örn: kanto, johto, hoenn, vb.)"
}
}
},
"output_schema": {
"content": [
{
"text": "string",
"type": "text"
}
]
}
},
{
"name": "random_pokemon_by_type",
"description": "Belirli bir türden rastgele bir Pokémon seç",
"input_schema": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"description": "Pokémon türü (örn: ateş, su, çimen, vb.)"
}
}
},
"output_schema": {
"content": [
{
"text": "string",
"type": "text"
}
]
}
},
{
"name": "pokemon_query",
"description": "Doğal dil ile Pokémon sorguları yap",
"input_schema": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Pokémon hakkında doğal dil sorgusu"
}
}
},
"output_schema": {
"content": [
{
"text": "string",
"type": "text"
}
]
}
},
{
"name": "start_battle",
"description": "Start a battle between two Pokémon",
"input_schema": {
"type": "object",
"required": [
"playerPokemonId",
"opponentPokemonId"
],
"properties": {
"playerPokemonId": {
"type": "number",
"description": "Player's Pokémon ID"
},
"opponentPokemonId": {
"type": "number",
"description": "Opponent's Pokémon ID"
}
}
},
"output_schema": {
"content": [
{
"text": "string",
"type": "text"
}
]
}
},
{
"name": "make_move",
"description": "Make a move in the current battle",
"input_schema": {
"type": "object",
"required": [
"moveIndex"
],
"properties": {
"moveIndex": {
"type": "number",
"maximum": 3,
"minimum": 0,
"description": "Index of the move to use (0-3)"
}
}
},
"output_schema": {
"content": [
{
"text": "string",
"type": "text"
}
]
}
},
{
"name": "use_item",
"description": "Use an item in battle",
"input_schema": {
"type": "object",
"required": [
"itemIndex"
],
"properties": {
"itemIndex": {
"type": "number",
"minimum": 0,
"description": "Index of the item to use"
}
}
},
"output_schema": {
"content": [
{
"text": "string",
"type": "text"
}
]
}
}
],
"version": "1.0.0",
"categories": [],
"description": "Pokémon information MCP server"
}Forks
Watchers
Contributors
Last Push: 5/28/2025
Open Issues: 0