wellness-mcp-server
Verified Safeby Anny-1079
Overview
Provides wellness tips based on a user's mood, designed to be used as a tool by an AI agent or directly via a FastAPI endpoint.
Installation
python mcp_server/wellness_mcp_server.pySecurity Notes
The FastAPI server (`main.py`) uses `allow_origins=["*"]` for CORS, which is generally not recommended for production environments but common for development. The core MCP server (`wellness_mcp_server.py`) communicates via stdin/stdout (JSON-RPC) and does not expose direct network interfaces. No `eval`, hardcoded secrets, or obvious malicious patterns were found. Input is sanitized using `.lower()` before dictionary lookup, mitigating basic injection risks.
Similar Servers
fastapi_mcp
Automatically converts FastAPI endpoints into Model Context Protocol (MCP) tools for seamless integration with LLM agents.
MCP-Student-Recommendation-Server
An AI-powered recommendation system for students, providing personalized content (forums, courses, events, scholarships, etc.) and integrating with an AI assistant via the Model Context Protocol (MCP).
mcp-web-knowledge-coach
A demo and training platform for the Model Context Protocol (MCP), providing structured recommendations and resources related to AI/LLM concepts via a Python backend and React frontend.
fastapi-mcp-server
Enables AI assistants to introspect and analyze FastAPI applications for API discovery, documentation, and debugging.