MCP-Server
Verified Safeby Sameernayeema8
Overview
This server exposes an LLM with tools to interact with the PokéAPI, enabling it to fetch Pokémon data, list popular Pokémon, and assemble tournament squads.
Installation
python poke.pySecurity Notes
The server uses `httpx` to interact with `pokeapi.co`. User input for Pokémon names is directly inserted into the API URL after being lowercased. There are no obvious `eval`, `exec`, or similar dangerous patterns. No hardcoded secrets or sensitive credentials are present in the provided source code. The main risk, if any, would be the robustness of the external PokéAPI to malformed inputs, which is outside this server's control.
Similar Servers
fastapi_mcp
Automatically converts FastAPI endpoints into Model Context Protocol (MCP) tools for seamless integration with LLM agents.
mcp-python-starter
A feature-complete Model Context Protocol (MCP) server template in Python for developing AI applications and agents.
pokemon-go-mcp
A Model Context Protocol (MCP) server providing real-time Pokemon Go data (events, raids, research, eggs, Team Rocket, promo codes) via an API for integration with other tools.
MCP-tool-lesson
Provides detailed Pokemon data from PokeAPI to AI assistants and other MCP clients via various tools.