mcp_poke_server
Verified Safeby DimbongCHOI
Overview
This server provides a Pokémon information API and acts as a tool for an AI chatbot via the Model Context Protocol (MCP), supporting both direct API calls and MCP-orchestrated interactions.
Installation
node src/http-server.jsEnvironment Variables
- PORT
- NODE_ENV
Security Notes
CORS configuration in `src/web-server.js` allows requests with no origin (`if (!origin) { return callback(null, true); }`), which is noted as a 'development convenience' but could expose the server to broader access than intended in a production environment. Otherwise, standard practices like input validation (JSONRPCMessageSchema) and body size limits are in place. No obvious hardcoded secrets or malicious patterns were found.
Similar Servers
tiger-linear-mcp-server
Provides LLMs with focused tools to interact with the Linear API for issue and project management.
tiger-memory-mcp-server
A backend server for a Minecraft-related application, likely providing data management or proxy services.
lumino-mcp-server
An open source MCP (Model Context Protocol) server providing AI-powered tools for Kubernetes, OpenShift, and Tekton monitoring, analysis, and troubleshooting.
MCP-Server
A backend server for a Minecraft-compatible game, handling client connections, authentication, and game packet processing.