mcp_server
Verified Safeby ShayYeffet
Overview
Transforms an MCP-compatible client (like Claude Desktop) into a comprehensive development environment for coding, DevOps, data processing, and automation tasks.
Installation
node /ABSOLUTE/PATH/TO/ultimate_mcp_server/dist/index.jsEnvironment Variables
- MCP_WORKSPACE_ROOT
- MCP_ALLOWED_COMMANDS
- MCP_READ_ONLY
- MCP_LOG_LEVEL
- MCP_COMMAND_TIMEOUT
Security Notes
The server implements robust local filesystem sandboxing and command allowlisting (using `shell: false` with `spawn` for commands), which is critical for preventing directory traversal and arbitrary code execution locally. However, the `cloud_storage` and `image_process` tools contain 'placeholder' or 'simplified' implementations that lack proper SDKs and secure authentication mechanisms (e.g., using basic auth for cloud storage instead of proper Signature V4 signing), potentially exposing credentials or leading to insecure interactions with external services if used without installing recommended libraries or implementing robust security. The claim of 'military-grade sandboxing' for cloud storage is not met by the current simplified code. The `send_notification` tool's webhook functionality also relies on basic HTTP requests without inherent advanced security features. Therefore, while local operations are well-secured, interactions with external services require careful user configuration and potentially additional secure library installations.
Similar Servers
mcp-server-code-execution-mode
This server enables LLM agents to execute Python code in a highly secure, isolated container environment, facilitating complex multi-tool orchestration and data analysis with minimal LLM context token usage.
Lynkr
Lynkr is an AI orchestration layer that acts as an LLM gateway, routing language model requests to various providers (Ollama, Databricks, OpenAI, etc.). It provides an OpenAI-compatible API and enables AI-driven coding tasks via a rich set of tools and a multi-agent framework, with a strong focus on security, performance, and token efficiency. It allows AI agents to interact with a defined workspace (reading/writing files, executing shell commands, performing Git operations) and leverages long-term memory and agent learning to enhance task execution.
files-stdio-mcp-server
Provides sandboxed filesystem access for AI agents to explore directories, read/search file content, and safely edit text files with checksum verification.
dev-kit-mcp-server
A Model Context Protocol (MCP) server targeted for agent development tools, providing scoped authorized operations in the root project directory.