store-mcp-client-server
Verified Safeby sarthaksolow
Overview
Implements a retail demand forecasting Model Context Protocol (MCP) server that predicts product demand using sales data, seasonal events, and generates AI-powered explanations.
Installation
python servers/forecasting/server.pyEnvironment Variables
- OPENROUTER_API_KEY
Security Notes
The API key is loaded securely from environment variables. There is no explicit use of `eval` or direct arbitrary code execution from untrusted user input. Data loading is from local, predefined JSON/CSV files. LLM interaction is through the `openai` library, which is a standard and generally secure way to interact with AI services. The input parameter `category` is used for DataFrame filtering and prompt construction, which is a safe pattern.
Similar Servers
tmcp
A server implementation for the Model Context Protocol (MCP) to enable LLMs to access external context and tools.
mcp-servers
Provides an MCP server for Qdrant vector database integration, enabling AI agents to perform semantic search, store documents, and manage collections with advanced multi-tenant filtering capabilities.
qtmcp
Provides a Model Context Protocol (MCP) server framework for AI applications, offering tool, resource, and prompt services via HTTP.
polybrain-mcp
Connects AI agents to multiple LLM models, providing conversation history management and model switching capabilities.