server-mcp
Verified Safeby nagareproject
Overview
A server implementation for the Nagare Model Context Protocol, enabling interaction with tools, resources, prompts, and sampling capabilities, primarily for AI/ML-driven applications.
Installation
No command providedSecurity Notes
The code uses `exec` to dynamically create function prototypes from introspected Python function signatures or Pydantic models. While `exec` is generally a high-risk function, its usage here appears to be controlled internally for AST manipulation based on validated inputs, rather than arbitrary user-controlled code execution. Resource functions, if implemented by users to accept arbitrary file paths from client input, could introduce path traversal vulnerabilities; however, the provided examples use hardcoded paths, making them safe within the example context. The server also relies on dynamically loaded plugins via `entry_points`, meaning the overall security posture is also dependent on the trustworthiness of any installed plugins. No hardcoded secrets were identified.
Similar Servers
arcade-mcp
Provides a framework and pre-built toolkits for integrating Large Language Models (LLMs) with various external services and databases, enabling AI agents to interact with the real world.
mcp-servers
A curated collection of Model Context Protocol (MCP) server configurations to integrate various developer tools and services with AI agents.
tmcp
A server implementation for the Model Context Protocol (MCP) to enable LLMs to access external context and tools.
model-context-protocol
This server implements the Model Context Protocol, likely for managing and serving contextual data and interactions for AI models.