mcp-framework-server
Verified Safeby Elhan1505
Overview
A Python-based MCP (Model Context Protocol) server for processing AI-driven career orientation requests using various frameworks and storing conversation history.
Installation
uvicorn src.api:app --host 0.0.0.0 --port 8000Environment Variables
- ANTHROPIC_API_KEY
- FRAMEWORKS_PATH
Security Notes
The application uses `CORSMiddleware` with `allow_origins=["*"]`, which is insecure for production environments and should be restricted to known origins. SQLite database interactions use parameterized queries, mitigating SQL injection risks. The `ANTHROPIC_API_KEY` is loaded from environment variables, preventing hardcoding of secrets. Framework files are loaded as plain text from a fixed local directory, reducing arbitrary code execution risk. No 'eval', 'exec', or other direct code execution patterns from user input were found.
Similar Servers
fastapi_mcp
Automatically converts FastAPI endpoints into Model Context Protocol (MCP) tools for seamless integration with LLM agents.
arcade-mcp
This project provides a comprehensive framework and a collection of pre-built toolkits for developing and deploying AI-powered Micro-Credentialing Protocol (MCP) servers, enabling agents to securely and efficiently interact with various external services.
proteus-ai
A multi-agent workflow orchestration system capable of generating and executing complex workflows, interacting with external MCP (Model Context Protocol) servers for tools and resources, and managing conversational agents and SOP memories.
my-mcp-server
This server exposes an AI-centric microservice API using the MCP protocol, providing tools, resources, and prompt templates.