concurrent-agent-mcp
Verified Safeby hegner123
Overview
Coordinates multiple AI agents for parallel development tasks by managing atomic step claiming, dependency tracking, and crash recovery using a SQLite database.
Installation
./bin/concurrent-agent-mcpEnvironment Variables
- AGENT_DB_PATH
Security Notes
The server design explicitly addresses security concerns for its intended local execution context. It uses parameterized queries to prevent SQL injection, transports data via stdio (no network exposure), and relies on file permissions for database access. There are no hardcoded secrets or 'eval' patterns identified in the provided source code. Agents are trusted as they operate under the same user's context. The database file is stored in the user's home directory (`~/.claude/agent-coordination.db`) which is reasonable for a local tool.
Similar Servers
conductor-tasks
Conductor Tasks acts as an intelligent AI-powered assistant for developers, streamlining the entire development lifecycle from task generation and planning (parsing PRDs, expanding tasks, generating implementation steps) to execution and code modification (generating diffs). It provides visual task management, integrates with various IDEs, and leverages multiple LLM providers for optimal results and cost efficiency.
responsible-vibe-mcp
Manages conversation state and guides LLM coding agents through structured software development workflows with long-term project memory and multi-agent collaboration.
savecontext
Provides persistent memory, issue tracking, and project planning for AI coding assistants via the Model Context Protocol (MCP).
mcp-tasks
Manages development tasks and workflows for AI agents using the Model Context Protocol (MCP), enabling persistent planning, category-based organization, and story-based development.