dev-kit-mcp-server
Verified Safeby DanielAvdar
Overview
A Model Context Protocol (MCP) server for agent development tools, enabling secure, scoped operations within a root project directory.
Installation
dev-kit-mcp-server --root-dir=workdirSecurity Notes
The server implements strong security measures. All file system operations are strictly confined to a specified `root_dir` through path validation (`_validate_path_in_root`), preventing directory traversal attacks. Subprocess execution for `make` targets and predefined commands uses `asyncio.create_subprocess_exec`, which is generally safer than shell execution. Input parameters for commands are validated with a strict regex (`VALID_PARAM_REGEX`) to prevent command injection. No direct use of `eval` or obvious hardcoded secrets were found.
Similar Servers
mcp-filesystem-server
Provides secure and controlled access to the local filesystem via the Model Context Protocol (MCP) for AI agents and other applications.
ssh-mcp-server
Enables AI assistants to securely execute remote SSH commands and perform file transfers on target servers via the Model Context Protocol (MCP).
toolhive-studio
ToolHive simplifies and secures the discovery, deployment, and management of Model Context Protocol (MCP) servers, enabling connections to AI agents and clients.
filesystem-mcp
Provides secure, efficient, and token-optimized filesystem operations for AI agents via the Model Context Protocol.