sub-agents-mcp
Verified Safeby nickmisasi
Overview
Orchestrates task-specific AI agents defined in markdown files for execution via Cursor, Claude Code, or Gemini CLIs within any MCP-compatible tool.
Installation
npx /absolute/path/to/sub-agents-mcpEnvironment Variables
- AGENTS_DIR
Security Notes
The server demonstrates strong security practices with robust input validation for agent names, prompts, and `cwd` parameters, preventing path traversal and injection risks. It utilizes `child_process.spawn` with `shell: false` for external command execution, which is inherently safer than `exec`. Prompts are carefully formatted and passed as arguments, reducing shell injection vectors. No hardcoded secrets or 'eval' patterns were identified. External CLI tools (Cursor, Claude, Gemini) are assumed to handle their `extra_args` securely, shifting some responsibility to those trusted binaries.
Similar Servers
consult-llm-mcp
An MCP server that allows AI agents like Claude Code to consult stronger, more capable AI models (e.g., GPT-5.2, Gemini 3.0 Pro) for complex code analysis, debugging, and architectural advice.
cursor-cloud-agent-mcp
This MCP server acts as a gateway, allowing AI assistants to interact with the Cursor Cloud Agents API to create, manage, and monitor automated tasks on GitHub repositories.
AI-Prompt-Guide-MCP
Orchestrates AI agents for project management and development workflows by linking structured markdown specifications and tasks.
mcp-client-server
A specialized Model Context Protocol (MCP) server designed to act as a testing harness for developing and iterating on other MCP servers within a Claude AI environment.