mcp-e70738e0-1d31cc16-jcd
Verified Safeby aiscibe-mcp-deployment
Overview
An auto-generated Model Context Protocol (MCP) server that exposes configured APIs as tools for Claude and other AI models.
Installation
python app/mcp_server.pyEnvironment Variables
- OPENAI_API_KEY
Security Notes
The `api/index.py` handler uses `Access-Control-Allow-Origin: *`, which is a permissive CORS setting. The `API_CONNECTIONS` object in `app/mcp_server.py` is defined in source code and, if modified, could potentially hardcode API keys/tokens directly instead of fetching them from environment variables, posing a secret management risk. The `call_api` function directly uses the `endpoint` argument for URL construction; while tools are intended to be manually registered, this pattern could lead to Server-Side Request Forgery (SSRF) if user input to tools is not rigorously validated. Logging is set to DEBUG which might expose sensitive information in a production environment. No direct use of `eval` or explicit command injection patterns were identified.
Similar Servers
claude-faf-mcp
Optimizes AI understanding of software projects by providing persistent context, fixing context-drift, and enabling bi-directional synchronization between project metadata and AI documentation.
mcp-devtools-server
This MCP server standardizes development tool patterns and provides AI-powered integrations to enable Claude Code to generate code more efficiently, reduce errors, and improve autocorrection for various programming languages and workflows.
ai-sdk-provider-claude-code
Provides a Vercel AI SDK integration for Claude models, specifically designed to enable universal tool support by translating AI SDK tools to Claude Code's XML format, eliminating the need for separate MCP servers.
converse
Orchestrates and exposes various AI tools (chat, multi-model consensus, job management) over the Model Context Protocol, enabling local, persistent, and potentially asynchronous AI interactions across multiple Large Language Model (LLM) providers.