MCP-para-todo
Verified Safeby elsantiwg
Overview
An educational MCP server that connects language models with external tools in real-time, focusing on providing real-world context and extending LLM capabilities.
Installation
npm startEnvironment Variables
- OPENWEATHER_API_KEY
Security Notes
The server loads API keys from environment variables, which is good practice. The `mathjs.evaluate` function, if used, is generally considered safe from arbitrary code execution according to its documentation as it does not access the global scope. No hardcoded secrets or 'eval' statements were found. Error messages could expose some internal details but are not critical vulnerabilities for this context. The server uses HTTP POST, not WebSockets, despite README examples.
Similar Servers
boilerplate-mcp-server
This boilerplate provides a production-ready foundation for developing custom Model Context Protocol (MCP) servers in TypeScript to connect AI assistants with external APIs and data sources, exemplified by an IP geolocation lookup tool.
mcp-typescript-template
This server acts as a template for building remote Model Context Protocol (MCP) servers using TypeScript, handling MCP tool registration and session management over HTTP.
compound-mcp-server
Provides a Model Context Protocol (MCP) server for interacting with Groq models, including compound/meta models, exposing real-time information and code execution capabilities.
mcp_server
This server implements the Model Context Protocol (MCP) to expose developer-defined tools as a HTTP API, specifically demonstrating a task creation tool.