conductor-tasks
Verified Safeby hridaya423
Overview
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.
Installation
npx conductor-tasks --serve-mcpEnvironment Variables
- ANTHROPIC_API_KEY
- OPENAI_API_KEY
- MISTRAL_API_KEY
- GROQ_API_KEY
- GEMINI_API_KEY
- XAI_API_KEY
- PERPLEXITY_API_KEY
- OLLAMA_ENABLED
- OPENROUTER_API_KEY
- DEFAULT_LLM_PROVIDER
- LOG_LEVEL
Security Notes
The server uses environment variables for all API keys, avoiding hardcoded secrets. It performs extensive file system operations for task management, project analysis, and IDE configuration, which are handled with logging and error checking. The 'propose-diff' command can directly modify local files based on LLM-generated diffs; while this is a core function of an AI coding agent, it poses an inherent risk if the LLM generates malicious or unintended code changes. The 'originalHash' parameter for 'propose-diff' is a good mitigation against applying diffs to modified files, but it's optional and doesn't protect against malicious LLM output itself. No 'eval()' or obvious obfuscation was found in the provided code. Network calls are primarily secure HTTPS connections to LLM providers.
Similar Servers
claude-prompts
This server provides a hot-reloadable prompt engine with chains, quality gates, and structured reasoning for AI assistants, enhancing control over Claude's behavior in prompt workflows.
knowns
A CLI-first knowledge layer and task/documentation management tool that provides AI agents with persistent project context.
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.
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.