Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
npm install vibe-coder-mcp






Vibe Coder is an MCP (Model Context Protocol) server designed to supercharge your AI assistant (like Cursor, Cline AI, or Claude Desktop) with powerful tools for software development. It helps with research, planning, generating requirements, creating starter projects, and more!
- š Documentation Updates
- Updated all version references across configuration files
- Synchronized setup scripts (setup.sh, setup.bat) to reflect new version
- Updated README, CHANGELOG, and system instructions
- Enhanced .vibe-config.json version alignment
- šļø Build Process Improvements
- Streamlined clean build workflow for release preparation
- Enhanced global installation process to avoid symlink issues
- Better CI/CD preparation with proper version management
- Improved packaging workflow for NPM publication
#### Version 0.3.5 - Enhanced CLI and Parameter Extraction
- Major Hybrid Matcher Enhancements: Complete parameter extraction logic for all 15 tools
- CLI/REPL Improvements: Interactive confirmation for low-confidence matches, improved input handling
- Fixed Task-List-Generator: Now auto-generates user stories when not provided
- Enhanced Tool Matching: Multi-strategy approach (keyword, pattern, semantic, LLM fallback)
- Better User Experience: Clear validation messages and job status polling
#### Version 0.2.8 - CLI Interactive Mode Fixes
#### Version 0.2.7 - Complete CLI Resolution
- Fixed missing configuration files in npm package
- Added llm_config.json and job-timeout-config.json to package files
- Resolved configuration loading errors
#### Version 0.2.6 - Runtime Dependencies
- Fixed runtime dependency issues with @xenova/transformers
- Resolved semantic matching functionality errors
#### Version 0.2.5 - CLI Onboarding Fix
- Fixed critical CLI onboarding loop bug
- Implemented context-aware configuration system
- Enhanced auto-detection improvements
vibe --interactive)- š Configuration Templates
- Pre-configured .env.template with documentation
- Complete llm_config.template.json
- Tool-specific mcp-config.template.json
- Located in src/config-templates/
- ā” Performance Improvements
- CI/CD pipeline 70% faster (~3 min, essential checks only)
- Streamlined validation: type-check, lint, build
- Unit tests run locally for faster developer feedback
- Optimized memory usage for large codebases
- š§ Unified CLI Binary
- Single vibe command for all operations
- Consistent interface across all modes
- Better resource management
bash
For existing users - fully backward compatible!
npm update -g vibe-coder-mcpTry the new interactive mode
vibe --interactive
`š Quick Start for New Users (v0.2.3+)
`bash
Install and run in one command
npx vibe-coder-mcp --setupOr install globally for the 'vibe' command
npm install -g vibe-coder-mcp
vibe --setup
`The setup wizard will:
1. ā
Configure your OpenRouter API key
2. ā
Set up project directories
3. ā
Create configuration files from templates
4. ā
Validate your environment
5. ā
Get you ready to use all features!
š¦ NPM Package
vibe-coder-mcp`bash
Run instantly with npx (recommended)
npx vibe-coder-mcpOr install globally
npm install -g vibe-coder-mcp
`š Installation Options
The easiest way to get started:
$3
`bash
Start MCP server
npx vibe-coder-mcpOr use the CLI directly
npx vibe-coder-mcp "research React best practices"
`$3
`bash
Install globally
npm install -g vibe-coder-mcpUse the unified 'vibe' command
vibe # Start MCP server
vibe "create a PRD for a todo app" # CLI mode
vibe --interactive # Interactive REPL mode (NEW!)
vibe --setup # Interactive setup wizard
`$3
`bash
Install in your project
npm install vibe-coder-mcpRun via npx
npx vibe-coder-mcp
npx vibe-coder-mcp "map the codebase structure"
`$3
#### MCP Server Mode
`bash
Default stdio transport (for MCP clients like Claude Desktop)
vibe-coder-mcpServer-Sent Events transport (for web clients)
vibe-coder-mcp --sse
`#### CLI Mode
`bash
Interactive setup wizard (runs automatically on first use)
vibe-coder-mcp --setupNatural language commands
vibe-coder-mcp "research modern JavaScript frameworks"
vibe-coder-mcp "create a PRD for an e-commerce platform"
vibe-coder-mcp "map the codebase structure" --jsonInteractive REPL mode (NEW in v0.2.3!)
vibe-coder-mcp --interactive
Features:
⢠Chat-style conversation interface
⢠Live tool execution with progress indicators
⢠Session persistence and history
⢠Markdown rendering support
⢠Multiple themes and customization
Help and options
vibe-coder-mcp --help
`#### Global Installation Benefits
After global installation (
npm install -g vibe-coder-mcp), use the shorter vibe command:
`bash
vibe # Start MCP server
vibe "your request here" # CLI mode
vibe --interactive # Interactive REPL mode
vibe --setup # Setup wizard
vibe --help # Show all options
`First-time setup (v0.2.3+):
- Automatic setup wizard runs on first use with smart detection
- OS-specific config paths automatically configured:
- Windows:
%APPDATA%\vibe-coder
- macOS: ~/Library/Application Support/vibe-coder
- Linux: ~/.config/vibe-coder
- Configuration templates provided in src/config-templates/
- Run vibe --setup manually to reconfigure at any timešÆ MCP Client Integration (Claude Desktop, Cursor, Cline AI)
$3
Vibe-Coder MCP integrates seamlessly with any MCP-compatible client. Here's how to configure it:
#### Option 1: Using NPX (Recommended)
In your MCP client's server configuration dialog:
- Server Name:
vibe-coder-mcp
- Command/URL: npx
- Arguments: vibe-coder-mcp
- Environment Variables:
- OPENROUTER_API_KEY: Your OpenRouter API key (required)
- VIBE_PROJECT_ROOT: /path/to/your/project (required)
- LOG_LEVEL: info (optional)
- NODE_ENV: production (optional)#### Option 2: Global Installation
`bash
First install globally
npm install -g vibe-coder-mcp
`
Then configure:
- Command/URL: vibe
- Arguments: (leave empty)
- Environment Variables: Same as Option 1#### Option 3: Node with Full Path
- Command/URL:
node
- Arguments: /path/to/node_modules/vibe-coder-mcp/build/index.js
- Environment Variables: Same as Option 1$3
For Claude Desktop users, add this to your
claude_desktop_config.json:`json
{
"mcpServers": {
"vibe-coder-mcp": {
"command": "npx",
"args": ["vibe-coder-mcp"],
"env": {
"OPENROUTER_API_KEY": "your-openrouter-api-key",
"VIBE_PROJECT_ROOT": "/path/to/your/project",
"LOG_LEVEL": "info",
"NODE_ENV": "production"
}
}
}
}
`See
example_claude_desktop_config.json for a complete example.$3
Once configured, your MCP client will have access to:
- vibe-task-manager: AI-native task management with RDD methodology
- research-manager: Deep research using Perplexity integration
- map-codebase: Advanced codebase analysis (35+ languages)
- curate-context: Intelligent context curation for AI development
- generate-prd: Product requirements document generator
- generate-user-stories: User story generator
- generate-task-list: Task list generator
- generate-fullstack-starter-kit: Project scaffolding tool
- run-workflow: Multi-step workflow execution
$3
After configuration, test by asking your AI assistant:
- "Use vibe to research React best practices"
- "Map the codebase for this project"
- "Generate a PRD for a task management app"
š Unified Project Root Configuration
New in v0.2.4+: Simplified configuration with automatic project detection!
$3
`bash
Just run from your project directory - automatic detection enabled!
cd /path/to/your/project
vibe "map the codebase structure"
`$3
`json
{
"env": {
"OPENROUTER_API_KEY": "your_key_here",
"VIBE_PROJECT_ROOT": "/path/to/your/project"
}
}
`Benefits:
- One Variable:
VIBE_PROJECT_ROOT replaces 3 separate directory configurations
- Auto-Detection: CLI users get zero-configuration project detection
- Context Aware: Different behavior for CLI vs MCP client usage
- Backward Compatible: Legacy variables still work as fallbacksš§ Environment Configuration
Required: You need an OpenRouter API key to use Vibe Coder MCP.
$3
1. Visit openrouter.ai
2. Create an account if you don't have one
3. Navigate to API Keys section
4. Create a new API key and copy it$3
Option 1: Using Setup Wizard (Recommended for v0.2.3+)
`bash
Run the interactive setup wizard
vibe --setupThe wizard will:
⢠Configure your OpenRouter API key
⢠Set up project directories
⢠Create configuration files
⢠Validate your setup
`Option 2: Environment Variables
`bash
Set your OpenRouter API key
export OPENROUTER_API_KEY="your_api_key_here"Optional: Set custom directories
export VIBE_CODER_OUTPUT_DIR="/path/to/output/directory"
export VIBE_PROJECT_ROOT="/path/to/your/project"Legacy variables (still supported for backward compatibility)
export CODE_MAP_ALLOWED_DIR="/path/to/your/source/code"
export VIBE_TASK_MANAGER_READ_DIR="/path/to/your/project"
`Option 3: Create .env file (templates provided in v0.2.3+)
Create a
.env file in your working directory (or copy from src/config-templates/.env.template):
`dotenv
Required: Your OpenRouter API key
OPENROUTER_API_KEY="your_api_key_here"Optional: Unified project root configuration
VIBE_CODER_OUTPUT_DIR="/path/to/output/directory"
VIBE_PROJECT_ROOT="/path/to/your/project"
VIBE_USE_PROJECT_ROOT_AUTO_DETECTION="true"Legacy variables (still supported for backward compatibility)
CODE_MAP_ALLOWED_DIR="/path/to/your/source/code"
VIBE_TASK_MANAGER_READ_DIR="/path/to/your/project"Optional: Other settings
OPENROUTER_BASE_URL="https://openrouter.ai/api/v1"
GEMINI_MODEL="google/gemini-2.5-flash-preview-05-20"
`$3
š Unified Configuration (Recommended)
- VIBE_PROJECT_ROOT: Single variable for all project operations (automatic detection enabled by default for CLI)
- VIBE_USE_PROJECT_ROOT_AUTO_DETECTION: Enable automatic project root detection for CLI users (default:
"true")
- VIBE_CODER_OUTPUT_DIR: Where generated files are saved (default: ./VibeCoderOutput/)Legacy Configuration (Still Supported)
- CODE_MAP_ALLOWED_DIR: Security boundary for code analysis (fallback if VIBE_PROJECT_ROOT not set)
- VIBE_TASK_MANAGER_READ_DIR: Security boundary for task manager operations (fallback if VIBE_PROJECT_ROOT not set)
Auto-Detection Benefits:
- Zero Configuration: CLI users get automatic project root detection
- Context Aware: Different behavior for CLI vs MCP client usage
- Intelligent Fallbacks: 5-priority resolution chain ensures reliable operation
š MCP Client Setup
Configure your AI assistant to connect to Vibe Coder MCP:
$3
Add this to your MCP settings (usually in
settings.json):`json
{
"mcpServers": {
"vibe-coder-mcp": {
"command": "npx",
"args": ["vibe-coder-mcp"],
"env": {
"OPENROUTER_API_KEY": "your_api_key_here"
}
}
}
}
`$3
Add this to your
claude_desktop_config.json:`json
{
"mcpServers": {
"vibe-coder-mcp": {
"command": "npx",
"args": ["vibe-coder-mcp"],
"env": {
"OPENROUTER_API_KEY": "your_api_key_here",
"VIBE_PROJECT_ROOT": "/path/to/your/project"
}
}
}
}
`š» CLI Usage Guide
Vibe Coder includes a powerful command-line interface with multiple modes for direct interaction with all tools.
$3
`bash
First-time setup (runs automatically on first use)
vibe --setupFeatures:
⢠Smart first-run detection
⢠OS-specific configuration paths
⢠Non-interactive mode for CI/CD
⢠Configuration validation
⢠Backup system for existing configs
Reconfigure existing installation
vibe --reconfigure
`$3
`bash
Start interactive chat session
vibe --interactiveOr with alias
vibe -iResume a previous session
vibe --resume
`REPL Features:
- šÆ Chat Interface: Natural conversation flow with context retention
- š Multi-line Input: Use
""" for multi-line messages
- šØ Themes: Multiple color themes with /theme command
- š¾ Session Management: Auto-save and resume capabilities
- š Markdown Rendering: Rich text formatting in responses
- ā” Live Progress: Real-time execution feedback
- š§ Slash Commands: Quick actions like /tools, /history, /save
- š® Auto-completion: Tab completion for commands and tools$3
#### Research & Analysis
`bash
vibe "research modern React patterns and best practices"
vibe "analyze current trends in microservices architecture"
vibe "research security best practices for Node.js APIs"
`#### Project Planning
`bash
vibe "create a PRD for an e-commerce platform with user authentication"
vibe "generate user stories for authentication system"
vibe "create development tasks from user stories"
`#### Code Analysis & Generation
`bash
vibe "map the codebase structure"
vibe "create context for implementing authentication"
vibe "generate a fullstack starter kit for e-commerce"
vibe "create coding standards for TypeScript projects"
`#### Task Management
`bash
vibe "create a new project for building a todo app"
vibe "list all my projects"
vibe "show project status for MyApp"
vibe "create high priority task for implementing OAuth"
`$3
`bash
Output formats
vibe "research React hooks" --json
vibe "create PRD for todo app" --yamlVerbosity control
vibe "create project MyApp" --verbose
vibe "research Node.js patterns" --quietInteractive REPL mode (NEW!)
vibe --interactive
vibe -iSession management (NEW!)
vibe --resume
vibe --list-sessions
`$3
Once in interactive mode (vibe --interactive), use these commands:`bash
Help and navigation
/help # Show available commands
/tools # List all MCP tools
/status # Show session statusSession management
/save # Save current session
/sessions # List saved sessions
/export [file] # Export session to markdownConversation control
/clear # Clear conversation history
/history # Show conversation historyCustomization
/theme # Change color theme
/markdown # Toggle markdown rendering
/config # Manage configurationExit
/quit or /exit # Exit interactive mode
`$3
Generated files are automatically organized in VibeCoderOutput/:
`
VibeCoderOutput/
āāā research/ # Research reports
āāā prd-generator/ # Product requirements
āāā user-stories-generator/ # User stories
āāā task-list-generator/ # Development tasks
āāā fullstack-starter-kit-generator/ # Project templates
āāā map-codebase/ # Code analysis
āāā vibe-task-manager/ # Task management data
āāā workflow-runner/ # Workflow outputs
`---
š Migration Guide (v0.2.3)
$3
None! Version 0.2.3 is fully backward compatible. All existing configurations and workflows continue to work.
$3
- Unified CLI architecture with single entry point
- Better error handling and recovery
- Improved resource cleanup
- Enhanced type safety throughout codebase
- Memory leak prevention in long-running sessions
- CI/CD Pipeline Optimization:
- 70% faster execution (~3 minutes vs ~10 minutes)
- Focused on essential checks: type-check, lint, build
- Unit tests moved to local development workflow
- See CI/CD Guide for details
- Memory usage optimized for large codebases
- Faster first-run experience with smart detection
---
š Development Setup (Advanced)
If you want to contribute to development or run from source, follow the detailed setup guide below.
Overview & Features
Vibe Coder MCP integrates with MCP-compatible clients to provide the following capabilities:
$3
* Quad Transport Support: stdio, SSE, WebSocket, and HTTP transport protocols for maximum client compatibility
* Dynamic Port Allocation: Intelligent port management with conflict resolution and graceful degradation
* Semantic Request Routing: Intelligently routes requests using embedding-based semantic matching with sequential thinking fallbacks
* Tool Registry Architecture: Centralized tool management with self-registering tools
* Unified Communication Protocol: Agent coordination across all transport mechanisms with real-time notifications
* Session State Management: Maintains context across requests within sessions$3
Vibe Task Manager: Production-ready task management with 99.9% test success rate and comprehensive integration (Functional but actively being enhanced)*
* Natural Language Processing: 21 supported intents with multi-strategy recognition (pattern matching + LLM fallback)
* Recursive Decomposition Design (RDD): Intelligent project breakdown into atomic tasks
* Agent Orchestration: Multi-agent coordination with capability mapping, load balancing, and real-time status synchronization
* Multi-Transport Agent Support: Full integration across stdio, SSE, WebSocket, and HTTP transports
* Real Storage Integration: Zero mock code policy - all production integrations
* Artifact Parsing Integration: Seamless integration with PRD Generator and Task List Generator outputs
* Session Persistence: Enhanced session tracking with orchestration workflow triggers
* Comprehensive CLI: Natural language command-line interface with extensive functionality$3
* Code Map Tool: 35+ programming language support with 95-97% token reduction optimization
* Context Curation Tool: Language-agnostic project detection with 95%+ accuracy across 35+ languages
* Intelligent Codemap Caching: Configurable caching system that reuses recent codemaps to optimize workflow performance
* Enhanced Import Resolution: Third-party integration for accurate dependency mapping
* Multi-Strategy File Discovery: 4 parallel strategies for comprehensive analysis
* Memory Optimization: Sophisticated caching and resource management
* Security Boundaries: Separate read/write path validation for secure operations$3
* Research Tool: Deep research using Perplexity Sonar via OpenRouter
* Context Curation: Intelligent codebase analysis with 8-phase workflow pipeline and intelligent codemap caching for AI-driven development
* Document Generators: PRDs (prd-generator), user stories (user-stories-generator), task lists (task-list-generator), development rules (rules-generator)
* Project Scaffolding: Full-stack starter kits (fullstack-starter-kit-generator) with dynamic template generation
* Workflow Execution: Predefined sequences of tool calls defined in workflows.json$3
* Asynchronous Execution: Job-based processing with real-time status tracking
* Performance Optimized: <200ms response times, <400MB memory usage
* Comprehensive Testing: 99.9% test success rate across 2,100+ tests with full integration validation
* Production Ready: Zero mock implementations, real service integrations
* Enhanced Error Handling: Advanced error recovery with automatic retry, escalation, and pattern analysis
* Dynamic Port Management: Intelligent port allocation with conflict resolution and graceful degradation
* Real-Time Monitoring: Agent health monitoring, task execution tracking, and performance analytics(See "Detailed Tool Documentation" and "Feature Details" sections below for more)
Development Setup Guide
For developers who want to run from source or contribute to the project.
$3
1. Check Node.js Version:
* Open a terminal or command prompt.
* Run
node -v
* Ensure the output shows v20.0.0 or higher (required).
* If not installed or outdated: Download from nodejs.org.2. Check Git Installation:
* Open a terminal or command prompt.
* Run
git --version
* If not installed: Download from git-scm.com.3. Get OpenRouter API Key:
* Visit openrouter.ai
* Create an account if you don't have one.
* Navigate to API Keys section.
* Create a new API key and copy it.
* Keep this key handy for Step 4.
$3
1. Create a Project Directory (optional):
* Open a terminal or command prompt.
* Navigate to where you want to store the project:
`bash
cd ~/Documents # Example: Change to your preferred location
`2. Clone the Repository:
* Run:
`bash
git clone https://github.com/freshtechbro/vibe-coder-mcp.git
`
(Or use your fork's URL if applicable)3. Navigate to Project Directory:
* Run:
`bash
cd vibe-coder-mcp
`$3
Choose the appropriate script for your operating system:
For Windows:
1. In your terminal (still in the vibe-coder-mcp directory), run:
`batch
setup.bat
`
2. Wait for the script to complete (it will install dependencies, build the project, and create necessary directories).
3. If you see any error messages, refer to the Troubleshooting section below.For macOS or Linux:
1. Make the script executable:
`bash
chmod +x setup.sh
`
2. Run the script:
`bash
./setup.sh
`
3. Wait for the script to complete.
4. If you see any error messages, refer to the Troubleshooting section below.The script performs these actions:
* Checks Node.js version (v20+ required)
* Installs all dependencies via npm
* Creates necessary
VibeCoderOutput/ subdirectories
* Builds the TypeScript project
* Creates configuration from templates if not present (v0.2.3+)
* Sets executable permissions (on Unix systems)Note: The setup process is now faster (v0.2.3+) with optimized dependency installation and simplified build process.
$3
New in v0.2.3: Configuration templates are provided in
src/config-templates/ for easy setup.#### Option A: Use the Setup Wizard (Recommended)
`bash
vibe --setup
`
The wizard will guide you through configuration and create all necessary files.#### Option B: Manual Configuration
1. Copy templates (if not already done by setup script):
`bash
cp src/config-templates/.env.template .env
cp src/config-templates/llm_config.template.json llm_config.json
cp src/config-templates/mcp-config.template.json mcp-config.json
`2. Edit
.env file with your configuration:
`dotenv
# OpenRouter Configuration (REQUIRED)
OPENROUTER_API_KEY="your_actual_api_key_here"
# Optional configurations
OPENROUTER_BASE_URL=https://openrouter.ai/api/v1
GEMINI_MODEL=google/gemini-2.5-flash-preview-05-20
# Project directories (optional - auto-detected for CLI users)
VIBE_PROJECT_ROOT=/path/to/your/project
VIBE_CODER_OUTPUT_DIR=/path/to/output
`3. Configure Output Directory (Optional):
* To change where generated files are saved (default is
VibeCoderOutput/ inside the project), add this line to your .env file:
`dotenv
VIBE_CODER_OUTPUT_DIR=/path/to/your/desired/output/directory
`
* Replace the path with your preferred absolute path. Use forward slashes (/) for paths. If this variable is not set, the default directory (VibeCoderOutput/) will be used.4. š Configure Unified Project Root (Recommended):
* To set up the new unified project root configuration, add this line to your
.env file:
`dotenv
VIBE_PROJECT_ROOT=/path/to/your/project/root
`
* Replace the path with the absolute path to your project's root directory.
* Benefits: Single configuration variable for all tools (Code Map Generator, Task Manager, Context Curator)
* Auto-Detection: For CLI users, project root is automatically detected from the current working directory
* Backward Compatibility: Legacy variables are still supported if you prefer separate configurations5. Legacy Directory Configuration (Optional):
* If you prefer separate directory configurations, you can still use the original variables:
`dotenv
CODE_MAP_ALLOWED_DIR=/path/to/your/source/code/directory
VIBE_TASK_MANAGER_READ_DIR=/path/to/your/project/source/directory
`
* Note: These variables work as fallbacks if VIBE_PROJECT_ROOT is not set
* Security: All variables work with the strict filesystem security implementation6. Review Other Settings (Optional):
* You can add other environment variables supported by the server, such as
LOG_LEVEL (e.g., LOG_LEVEL=debug) or NODE_ENV (e.g., NODE_ENV=development).7. Save the
.env File.$3
This crucial step connects Vibe Coder to your AI assistant by adding its configuration to the client's MCP settings file.
#### 5.1: Locate Your Client's MCP Settings File
The location varies depending on your AI assistant:
* Cursor AI / Windsurf / RooCode (VS Code based):
1. Open the application.
2. Open the Command Palette (
Ctrl+Shift+P or Cmd+Shift+P).
3. Type and select Preferences: Open User Settings (JSON).
4. This opens your settings.json file where the mcpServers object should reside.* Cline AI (VS Code Extension):
* Windows:
%APPDATA%\Cursor\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json
* macOS: ~/Library/Application Support/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
* Linux: ~/.config/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
(Note: If using standard VS Code instead of Cursor, replace Cursor with Code in the path)** Claude Desktop:
* Windows:
%APPDATA%\Claude\claude_desktop_config.json
* macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
* Linux: ~/.config/Claude/claude_desktop_config.json#### 5.2: Add the Vibe Coder Configuration
1. Open the settings file identified above in a text editor.
2. Find the
"mcpServers": { ... } JSON object. If it doesn't exist, you may need to create it (ensure the overall file remains valid JSON). For example, an empty file might become {"mcpServers": {}}.
3. Add the following configuration block inside the curly braces {} of the mcpServers object. If other servers are already listed, add a comma , after the previous server's closing brace } before pasting this block.
`json
// This is the unique identifier for this MCP server instance within your client's settings
"vibe-coder-mcp": {
// Specifies the command used to execute the server. Should be 'node' if Node.js is in your system's PATH
"command": "node",
// Provides the arguments to the 'command'. The primary argument is the absolute path to the compiled server entry point
// !! IMPORTANT: Replace with the actual absolute path on YOUR system. Use forward slashes (/) even on Windows !!
"args": ["/Users/username/Documents/Dev Projects/Vibe-Coder-MCP/build/index.js"],
// Sets the current working directory for the server process when it runs
// !! IMPORTANT: Replace with the actual absolute path on YOUR system. Use forward slashes (/) even on Windows !!
"cwd": "/Users/username/Documents/Dev Projects/Vibe-Coder-MCP",
// Defines the communication transport protocol between the client and server
"transport": "stdio",
// Environment variables to be passed specifically to the Vibe Coder server process when it starts
// API Keys should be in the .env file, NOT here
"env": {
// Absolute path to the LLM configuration file used by Vibe Coder
// !! IMPORTANT: Replace with the actual absolute path on YOUR system !!
"LLM_CONFIG_PATH": "/Users/username/Documents/Dev Projects/Vibe-Coder-MCP/llm_config.json",
// Sets the logging level for the server
"LOG_LEVEL": "debug",
// Specifies the runtime environment
"NODE_ENV": "production",
// Directory where Vibe Coder tools will save their output files
// !! IMPORTANT: Replace with the actual absolute path on YOUR system !!
"VIBE_CODER_OUTPUT_DIR": "/Users/username/Documents/Dev Projects/Vibe-Coder-MCP/VibeCoderOutput",
// š Unified project root for all tools (recommended)
// This single variable configures all tools with the same project boundary
"VIBE_PROJECT_ROOT": "/Users/username/Documents/Dev Projects/Vibe-Coder-MCP",
// Legacy variables (optional - used as fallbacks if VIBE_PROJECT_ROOT not set)
"CODE_MAP_ALLOWED_DIR": "/Users/username/Documents/Dev Projects/Vibe-Coder-MCP/src",
"VIBE_TASK_MANAGER_READ_DIR": "/Users/username/Documents/Dev Projects/Vibe-Coder-MCP"
},
// A boolean flag to enable (false) or disable (true) this server configuration
"disabled": false,
// A list of tool names that the MCP client is allowed to execute automatically
"autoApprove": [
"research",
"rules-generator",
"user-stories-generator",
"task-list-generator",
"prd-generator",
"fullstack-starter-kit-generator",
"refactor-code",
"git-summary",
"run-workflow",
"map-codebase"
]
}
`4. CRUCIAL: Replace all placeholder paths (like
/path/to/your/vibe-coder-mcp/...) with the correct absolute paths on your system where you cloned the repository. Use forward slashes / for paths, even on Windows (e.g., C:/Users/YourName/Projects/vibe-coder-mcp/build/index.js). Incorrect paths are the most common reason the server fails to connect.
5. Save the settings file.
6. Completely close and restart your AI assistant application (Cursor, VS Code, Claude Desktop, etc.) for the changes to take effect.$3
1. Start Your AI Assistant:
* Completely restart your AI assistant application.
2. Test a Simple Command:
* Type a test command like:
Research modern JavaScript frameworks3. Check for Proper Response:
* If working correctly, you should receive a research response.
* If not, check the Troubleshooting section below.
AI Agent Integration
The Vibe Coder MCP system includes comprehensive system instructions designed to help AI agents and MCP clients effectively leverage the full ecosystem. These instructions provide detailed guidance on tool usage, integration patterns, and best practices.
$3
The
VIBE_CODER_MCP_SYSTEM_INSTRUCTIONS.md file contains comprehensive guidance for AI agents on how to use the Vibe Coder MCP ecosystem effectively. This file should be integrated into your AI development environment to train your agents on optimal tool usage.$3
#### Claude Desktop
Place the system instructions in your project's system instructions or custom instructions:
1. Open Claude Desktop
2. Navigate to project settings
3. Add the contents of
VIBE_CODER_MCP_SYSTEM_INSTRUCTIONS.md to the system instructions field
4. Save and restart Claude Desktop#### ChatGPT
Add the system instructions to your custom instructions or project settings:
1. Open ChatGPT settings
2. Navigate to custom instructions or project configuration
3. Paste the contents of
VIBE_CODER_MCP_SYSTEM_INSTRUCTIONS.md
4. Save the configuration#### VS Code Extensions (Cline, Roo Coder, Augment)
Integrate the system instructions into your extension's configuration:
1. Cline: Place in system instructions or memories section
2. Roo Coder: Add to system instructions or rules folder
3. Augment: Place in system instructions or memories
4. Other VS Code forks: Place in system instructions or rules folder with "always active" setting
#### General MCP Clients
For other MCP-compatible clients:
1. Locate the system instructions or rules configuration
2. Add the contents of
VIBE_CODER_MCP_SYSTEM_INSTRUCTIONS.md
3. Set as "always active" or "persistent" if the option is available
4. Restart the client to apply changes$3
- Comprehensive Tool Knowledge: Agents learn about all 15+ available tools and their capabilities
- Workflow Orchestration: Guidance on chaining tools together for complex development workflows
- Job Polling Protocol: Critical instructions for handling asynchronous operations correctly
- Best Practices: Performance optimization and error handling strategies
- Integration Patterns: Common workflows for research, planning, and implementation
$3
Once integrated, your AI agents will be able to:
`bash
Research-driven development
"Research modern React patterns, then create a PRD and generate user stories"Complete project setup
"Set up a new e-commerce project with React frontend and Node.js backend"Context-aware development
"Analyze this codebase and suggest improvements with implementation tasks"Multi-agent coordination
"Register frontend and backend agents, then distribute authentication tasks"
`$3
To verify successful integration:
1. Ask your AI agent about available Vibe Coder tools
2. Request a workflow that uses multiple tools in sequence
3. Check that the agent follows proper job polling protocols
4. Confirm that outputs are saved to the correct directories
šÆ Unified CLI Architecture (v0.2.3+)
The new unified CLI (
unified-cli.ts) provides a single entry point for all Vibe Coder operations:`mermaid
flowchart TD
Start[vibe command] --> Detect{First Run?}
Detect -->|Yes| Setup[Setup Wizard]
Detect -->|No| Parse[Parse Arguments]
Setup --> Config[Save Configuration]
Config --> Parse
Parse --> Mode{Mode?}
Mode -->|--interactive| REPL[Interactive REPL]
Mode -->|"message"| CLI[CLI Execution]
Mode -->|none| MCP[MCP Server]
Mode -->|--setup| Setup
REPL --> Session[Session Management]
Session --> Chat[Chat Interface]
Chat --> Tools[Tool Execution]
CLI --> Router[Hybrid Router]
Router --> Tools
MCP --> Transport{Transport?}
Transport -->|stdio| Stdio[Stdio Server]
Transport -->|sse| SSE[SSE Server]
`Benefits of Unified CLI:
- Single binary for all operations (
vibe)
- Consistent command interface
- Shared configuration management
- Seamless mode switching
- Better resource utilizationProject Architecture
The Vibe Coder MCP server follows a modular, TypeScript ESM architecture with dual transport support and comprehensive tool ecosystem:
`mermaid
flowchart TD
subgraph "Core Architecture"
Init[index.ts] --> Config[Configuration Loader]
Config --> Transport{Transport Type}
Transport --> |stdio| StdioTransport[Stdio Transport]
Transport --> |sse| SSETransport[SSE Transport]
StdioTransport --> Server[MCP Server]
SSETransport --> Server
Server --> ToolReg[Tool Registry]
ToolReg --> InitEmbed[Initialize Embeddings]
InitEmbed --> Ready[Server Ready]
end subgraph "Request Processing"
Req[Client Request] --> SessionMgr[Session Manager]
SessionMgr --> Router[Hybrid Router]
Router --> Semantic[Semantic Matcher]
Router --> Sequential[Sequential Thinking]
Semantic --> |High Confidence| Execute[Tool Execution]
Sequential --> |Fallback| Execute
Execute --> JobMgr[Job Manager]
JobMgr --> Response[Response to Client]
end
subgraph "Tool Ecosystem"
Execute --> Research[Research Tool]
Execute --> TaskMgr[Vibe Task Manager]
Execute --> CodeMap[Code Map Tool]
Execute --> FullStack[Fullstack Generator]
Execute --> PRDGen[PRD Generator]
Execute --> UserStories[User Stories Generator]
Execute --> TaskList[Task List Generator]
Execute --> Rules[Rules Generator]
Execute --> Workflow[Workflow Runner]
end
subgraph "Support Services"
JobMgr --> AsyncJobs[Async Job Processing]
Execute --> FileOps[File Operations]
Execute --> LLMHelper[LLM Integration]
Execute --> ErrorHandler[Error Handling]
Execute --> StateManager[Session State]
end
subgraph "Configuration & Security"
Config --> LLMConfig[LLM Config Mapping]
Config --> MCPConfig[MCP Tool Config]
Config --> EnvVars[Environment Variables]
FileOps --> SecurityBoundary[Security Boundaries]
SecurityBoundary --> ReadOps[Read Operations]
SecurityBoundary --> WriteOps[Write Operations]
end
`Directory Structure
`
vibe-coder-mcp/
āāā .env # Environment configuration
āāā .env.example # Environment template
āāā llm_config.json # LLM model mappings
āāā mcp-config.json # MCP tool configurations
āāā package.json # Project dependencies
āāā README.md # This documentation
āāā VIBE_CODER_MCP_SYSTEM_INSTRUCTIONS.md # System prompt documentation
āāā setup.bat # Windows setup script
āāā setup.sh # macOS/Linux setup script
āāā tsconfig.json # TypeScript configuration
āāā vitest.config.ts # Vitest (testing) configuration
āāā workflows.json # Workflow definitions
āāā build/ # Compiled JavaScript (after build)
āāā docs/ # Additional documentation
ā āāā map-codebase/ # Code Map Tool docs
ā āāā handover/ # Development handover docs
ā āāā *.md # Various documentation files
āāā VibeCoderOutput/ # Tool output directory
ā āāā research/ # Research reports
ā āāā rules-generator/ # Development rules
ā āāā prd-generator/ # Product requirements
ā āāā user-stories-generator/ # User stories
ā āāā task-list-generator/ # Task lists
ā āāā fullstack-starter-kit-generator/ # Project templates
ā āāā map-codebase/ # Code maps and diagrams
ā āāā vibe-task-manager/ # Task management data
ā āāā workflow-runner/ # Workflow outputs
āāā src/ # Source code
āāā index.ts # Entry point
āāā logger.ts # Logging configuration (Pino)
āāā server.ts # MCP server setup
āāā services/ # Core services
ā āāā routing/ # Semantic routing system
ā ā āāā embeddingStore.ts # Embedding management
ā ā āāā hybridMatcher.ts # Hybrid routing logic
ā ā āāā toolRegistry.ts # Tool registry
ā āāā sse-notifier/ # SSE notification system
ā āāā JobManager.ts # Async job management
ā āāā ToolService.ts # Tool execution service
āāā tools/ # MCP Tools
ā āāā index.ts # Tool registration
ā āāā sequential-thinking.ts # Fallback routing
ā āāā map-codebase/ # Code analysis tool
ā ā āāā cache/ # Memory management
ā ā āāā grammars/ # Tree-sitter grammars
ā ā āāā importResolvers/ # Import resolution adapters
ā ā āāā *.ts # Core implementation
ā āāā fullstack-starter-kit-generator/ # Project scaffolding
ā āāā prd-generator/ # PRD creation
ā āāā research/ # Research tool
ā āāā rules-generator/ # Rule generation
ā āāā task-list-generator/ # Task list generation
ā āāā user-stories-generator/ # User story generation
ā āāā vibe-task-manager/ # AI-native task management
ā ā āāā __tests__/ # Comprehensive test suite
ā ā āāā cli/ # Command-line interface
ā ā āāā core/ # Core algorithms
ā ā āāā integrations/ # Tool integrations
ā ā āāā prompts/ # LLM prompts (YAML)
ā ā āāā services/ # Business logic services
ā ā āāā types/ # TypeScript definitions
ā ā āāā utils/ # Utility functions
ā āāā workflow-runner/ # Workflow execution engine
āāā types/ # TypeScript type definitions
āāā utils/ # Shared utilities
āāā configLoader.ts # Configuration management
āāā errors.ts # Error handling
āāā llmHelper.ts # LLM integration helpers
`Semantic Routing System
Vibe Coder uses a sophisticated routing approach to select the right tool for each request:
`mermaid
flowchart TD
Start[Client Request] --> Process[Process Request]
Process --> Hybrid[Hybrid Matcher] subgraph "Primary: Semantic Routing"
Hybrid --> Semantic[Semantic Matcher]
Semantic --> Embeddings[Query Embeddings]
Embeddings --> Tools[Tool Embeddings]
Tools --> Compare[Compare via Cosine Similarity]
Compare --> Score[Score & Rank Tools]
Score --> Confidence{High Confidence?}
end
Confidence -->|Yes| Registry[Tool Registry]
subgraph "Fallback: Sequential Thinking"
Confidence -->|No| Sequential[Sequential Thinking]
Sequential --> LLM[LLM Analysis]
LLM --> ThoughtChain[Thought Chain]
ThoughtChain --> Extraction[Extract Tool Name]
Extraction --> Registry
end
Registry --> Executor[Execute Tool]
Executor --> Response[Return Response]
`Tool Registry Pattern
The Tool Registry is a central component for managing tool definitions and execution:
`mermaid
flowchart TD
subgraph "Tool Registration (at import)"
Import[Import Tool] --> Register[Call registerTool]
Register --> Store[Store in Registry Map]
end subgraph "Tool Definition"
Def[ToolDefinition] --> Name[Tool Name]
Def --> Desc[Description]
Def --> Schema[Zod Schema]
Def --> Exec[Executor Function]
end
subgraph "Server Initialization"
Init[server.ts] --> Import
Init --> GetAll[getAllTools]
GetAll --> Loop[Loop Through Tools]
Loop --> McpReg[Register with MCP Server]
end
subgraph "Tool Execution"
McpReg --> ExecTool[executeTool Function]
ExecTool --> GetTool[Get Tool from Registry]
GetTool --> Validate[Validate Input]
Validate -->|Valid| ExecFunc[Run Executor Function]
Validate -->|Invalid| ValidErr[Return Validation Error]
ExecFunc -->|Success| SuccessResp[Return Success Response]
ExecFunc -->|Error| HandleErr[Catch & Format Error]
HandleErr --> ErrResp[Return Error Response]
end
`Sequential Thinking Process
The Sequential Thinking mechanism provides LLM-based fallback routing:
`mermaid
flowchart TD
Start[Start] --> Estimate[Estimate Number of Steps]
Estimate --> Init[Initialize with System Prompt]
Init --> First[Generate First Thought]
First --> Context[Add to Context]
Context --> Loop{Needs More Thoughts?} Loop -->|Yes| Next[Generate Next Thought]
Next -->|Standard| AddStd[Add to Context]
Next -->|Revision| Rev[Mark as Revision]
Next -->|New Branch| Branch[Mark as Branch]
Rev --> AddRev[Add to Context]
Branch --> AddBranch[Add to Context]
AddStd --> Loop
AddRev --> Loop
AddBranch --> Loop
Loop -->|No| Extract[Extract Final Solution]
Extract --> End[End With Tool Selection]
subgraph "Error Handling"
Next -->|Error| Retry[Retry with Simplified Request]
Retry -->|Success| AddRetry[Add to Context]
Retry -->|Failure| FallbackEx[Extract Partial Solution]
AddRetry --> Loop
FallbackEx --> End
end
`Session State Management
`mermaid
flowchart TD
Start[Client Request] --> SessionID[Extract Session ID]
SessionID --> Store{State Exists?} Store -->|Yes| Retrieve[Retrieve Previous State]
Store -->|No| Create[Create New State]
Retrieve --> Context[Add Context to Tool]
Create --> NoContext[Execute Without Context]
Context --> Execute[Execute Tool]
NoContext --> Execute
Execute --> SaveState[Update Session State]
SaveState --> Response[Return Response to Client]
subgraph "Session State Structure"
State[SessionState] --> PrevCall[Previous Tool Call]
State --> PrevResp[Previous Response]
State --> Timestamp[Timestamp]
end
`Workflow Execution Engine
The Workflow system enables multi-step sequences:
`mermaid
flowchart TD
Start[Client Request] --> Parse[Parse Workflow Request]
Parse --> FindFlow[Find Workflow in workflows.json]
FindFlow --> Steps[Extract Steps] Steps --> Loop[Process Each Step]
Loop --> PrepInput[Prepare Step Input]
PrepInput --> ExecuteTool[Execute Tool via Registry]
ExecuteTool --> SaveOutput[Save Step Output]
SaveOutput --> NextStep{More Steps?}
NextStep -->|Yes| MapOutput[Map Output to Next Input]
MapOutput --> Loop
NextStep -->|No| FinalOutput[Prepare Final Output]
FinalOutput --> End[Return Workflow Result]
subgraph "Input/Output Mapping"
MapOutput --> Direct[Direct Value]
MapOutput --> Extract[Extract From Previous]
MapOutput --> Transform[Transform Values]
end
`Workflow Configuration
Workflows are defined in the
workflows.json file located in the root directory of the project. This file contains predefined sequences of tool calls that can be executed with a single command.$3
- The
workflows.json file must be placed in the project root directory (same level as package.json)
- The file follows this structure:
`json
{
"workflows": {
"workflowName1": {
"description": "Description of what this workflow does",
"inputSchema": {
"param1": "string",
"param2": "string"
},
"steps": [
{
"id": "step1_id",
"toolName": "tool-name",
"params": {
"param1": "{workflow.input.param1}"
}
},
{
"id": "step2_id",
"toolName": "another-tool",
"params": {
"paramA": "{workflow.input.param2}",
"paramB": "{steps.step1_id.output.content[0].text}"
}
}
],
"output": {
"summary": "Workflow completed message",
"details": ["Output line 1", "Output line 2"]
}
}
}
}
`$3
Workflow step parameters support template strings that can reference:
- Workflow inputs:
{workflow.input.paramName}
- Previous step outputs: {steps.stepId.output.content[0].text}$3
Use the
run-workflow tool with:
`
Run the newProjectSetup workflow with input {"productDescription": "A task manager app"}
`Detailed Tool Documentation
Each tool in the
src/tools/ directory includes comprehensive documentation in its own README.md file. These files cover:* Tool overview and purpose
* Input/output specifications
* Workflow diagrams (Mermaid)
* Usage examples
* System prompts used
* Error handling details
Refer to these individual READMEs for in-depth information:
*
src/tools/fullstack-starter-kit-generator/README.md
* src/tools/prd-generator/README.md
* src/tools/research/README.md
* src/tools/rules-generator/README.md
* src/tools/task-list-generator/README.md
* src/tools/user-stories-generator/README.md
* src/tools/workflow-runner/README.md
* src/tools/map-codebase/README.mdTool Categories
$3
* Code Map Tool (
map-codebase): Scans a codebase to extract semantic information (classes, functions, comments) and generates either a human-readable Markdown map with Mermaid diagrams or a structured JSON representation with absolute file paths for imports and enhanced class property information.
* Context Curation Tool (curate-context): Intelligent codebase analysis and context package curation with 8-phase workflow pipeline, intelligent codemap caching, language-agnostic project detection supporting 35+ programming languages, and multi-strategy file discovery for AI-driven development tasks.
* Research Tool (research): Performs deep research on technical topics using Perplexity Sonar, providing summaries and sources.$3
* Rules Generator (
rules-generator): Creates project-specific development rules and guidelines.
* PRD Generator (prd-generator): Generates comprehensive product requirements documents.
* User Stories Generator (user-stories-generator): Creates detailed user stories with acceptance criteria.
* Task List Generator (task-list-generator): Builds structured development task lists with dependencies.$3
* Fullstack Starter Kit Generator (
fullstack-starter-kit-generator): Creates customized project starter kits with specified frontend/backend technologies, including basic setup scripts and configuration.$3
* Workflow Runner (
run-workflow): Executes predefined sequences of tool calls for common development tasks.Generated File Storage
By default, outputs from the generator tools are stored for historical reference in the
VibeCoderOutput/ directory within the project. This location can be overridden by setting the VIBE_CODER_OUTPUT_DIR environment variable in your .env file or AI assistant configuration.$3
For security reasons, the Vibe Coder MCP tools maintain separate security boundaries for read and write operations with a security-by-default approach:
* Read Operations:
- Code Map Tool: Only reads from directories explicitly authorized through the
CODE_MAP_ALLOWED_DIR environment variable
- Vibe Task Manager: Only reads from directories authorized through the VIBE_TASK_MANAGER_READ_DIR environment variable (defaults to process.cwd())
- Security Mode: The Vibe Task Manager defaults to 'strict' security mode, which prevents access to system directories like /private/var/spool/postfix/, /System/, and other unauthorized paths
- Filesystem Security: Comprehensive blacklist enforcement and permission checking prevent EACCES errors and unauthorized file access* Write Operations: All output files are written to the
VIBE_CODER_OUTPUT_DIR directory (or its subdirectories). This separation ensures that tools can only write to designated output locations, protecting your source code from accidental modifications.* Security Implementation: The filesystem security system includes:
- Adaptive Timeout Management: Prevents operations from hanging indefinitely with intelligent retry and cancellation
- Path Validation: Comprehensive validation of all file paths before access
- Permission Checking: Proactive permission verification to prevent access errors
- System Directory Protection: Built-in blacklist of system directories that should never be accessed
Example structure (default location):
`bash
VibeCoderOutput/
āāā research/ # Research reports
ā āāā TIMESTAMP-QUERY-research.md
āāā rules-generator/ # Development rules
ā āāā TIMESTAMP-PROJECT-rules.md
āāā prd-generator/ # PRDs
ā āāā TIMESTAMP-PROJECT-prd.md
āāā user-stories-generator/ # User stories
ā āāā TIMESTAMP-PROJECT-user-stories.md
āāā task-list-generator/ # Task lists
ā āāā TIMESTAMP-PROJECT-task-list.md
āāā fullstack-starter-kit-generator/ # Project templates
ā āāā TIMESTAMP-PROJECT/
āāā map-codebase/ # Code maps and diagrams
ā āāā TIMESTAMP-code-map/
āāā workflow-runner/ # Workflow outputs
āāā TIMESTAMP-WORKFLOW/
`System Instructions for MCP Clients
For optimal performance with AI assistants and MCP clients, use the comprehensive system instructions provided in
VIBE_CODER_MCP_SYSTEM_INSTRUCTIONS.md. This document contains detailed guidance for:- Tool-specific usage patterns and best practices
- Natural language command structures
- Asynchronous job polling guidelines
- Integration workflows and examples
- Error handling and troubleshooting
$3
For Claude Desktop:
1. Open Claude Desktop settings
2. Navigate to "Custom Instructions" or "System Prompt"
3. Copy the entire content from
VIBE_CODER_MCP_SYSTEM_INSTRUCTIONS.md
4. Paste into the custom instructions field
5. Save settingsFor Augment:
1. Access Augment settings/preferences
2. Find "Custom Instructions" or "System Configuration"
3. Copy and paste the system instructions
4. Apply changes
For Claude Code/Windsurf/Other MCP Clients:
1. Locate the custom instructions or system prompt configuration
2. Copy the content from
VIBE_CODER_MCP_SYSTEM_INSTRUCTIONS.md
3. Paste into the appropriate field
4. Save/apply the configurationBenefits of Using System Instructions:
- 98%+ tool operation success rate
- Optimal natural language command recognition
- Proper asynchronous job handling
- Efficient workflow orchestration
- Reduced errors and improved troubleshooting
Usage Examples
$3
`bash
Research and analysis
vibe "research modern JavaScript frameworks"
vibe "create development rules for a mobile banking application"Project planning
vibe "generate a PRD for a task management application"
vibe "generate user stories for an e-commerce website"
vibe "create a task list for a weather app based on user stories"Code generation and analysis
vibe "create a starter kit for a React/Node.js blog application with user authentication"
vibe "map the codebase structure" --json
vibe "curate context for adding authentication to my React app"Task management
vibe "create a new project for building a todo app"
vibe "list all my projects"
vibe "show status of my React project"Workflow automation
vibe "run workflow newProjectSetup with input {\"projectName\": \"my-new-app\"}"
`$3
Interact with the tools via your connected AI assistant:* Research:
Research modern JavaScript frameworks
* Generate Rules: Create development rules for a mobile banking application
* Generate PRD: Generate a PRD for a task management application
* Generate User Stories: Generate user stories for an e-commerce website
* Generate Task List: Create a task list for a weather app based on [user stories]
* Sequential Thinking: Think through the architecture for a microservices-based e-commerce platform
* Fullstack Starter Kit: Create a starter kit for a React/Node.js blog application with user authentication
* Run Workflow: Run workflow newProjectSetup with input { "projectName": "my-new-app", "description": "A simple task manager" }
* Map Codebase: Generate a code map for the current project, map-codebase path="./src", or Generate a JSON representation of the codebase structure with output_format="json"
* Context Curation: Curate context for adding authentication to my React app, Generate context package for refactoring the user service, or Analyze this codebase for performance optimization opportunities
* Vibe Task Manager: Create a new project for building a todo app, List all my projects, Run task authentication-setup, What's the status of my React project?Vibe Task Manager - AI-Native Task Management
The Vibe Task Manager is a comprehensive task management system designed specifically for AI agents and development workflows. It provides intelligent project decomposition, natural language command processing, and seamless integration with other Vibe Coder tools.
Status: Functional and production-ready with 99.9% test success rate, but actively being enhanced with new features and improvements.
$3
* Natural Language Processing: Understands commands like "Create a project for building a React app" or "Show me all pending tasks"
* Recursive Decomposition Design (RDD): Automatically breaks down complex projects into atomic, executable tasks
* Artifact Parsing Integration: Seamlessly imports PRD files from
VibeCoderOutput/prd-generator/ and task lists from VibeCoderOutput/generated_task_lists/
* Session Persistence: Enhanced session tracking with orchestration workflow triggers for reliable multi-step operations
* Comprehensive CLI: Full command-line interface with natural language processing and structured commands
* Agent Orchestration: Coordinates multiple AI agents for parallel task execution
* Integration Ready: Works seamlessly with Code Map Tool, Research Tool, and other tools
* File Storage: All project data stored in VibeCoderOutput/vibe-task-manager/ following established conventions$3
`
Project Management
"Create a new project for building a todo app with React and Node.js"
"List all my projects"
"Show me the status of my web app project"Task Management
"Create a high priority task for implementing user authentication"
"List all pending tasks for the todo-app project"
"Run the database setup task"Project Analysis (Enhanced with Intelligent Lookup)
"Decompose my React project into development tasks"
"Decompose PID-TODO-APP-REACT-001 into tasks" # Using project ID
"Decompose \"Todo App with React\" into tasks" # Using exact name
"Decompose todo into tasks" # Using partial name (fuzzy matching)
"Refine the authentication task to include OAuth support"
"What's the current progress on my mobile app?"
`$3
- Intelligent Parsing: Automatically detects project IDs, names, or partial matches
- Comprehensive Validation: Validates project readiness before decomposition
- Enhanced Error Messages: Provides actionable guidance with available projects and usage examples
- Multiple Input Formats: Supports project IDs, quoted names, partial names, and fuzzy matching
- Confidence Scoring: Shows parsing confidence levels for better user feedback
$3
The Vibe Task Manager supports both structured commands and natural language:
Structured Commands:
-
vibe-task-manager create project "Name" "Description" --options
- vibe-task-manager list projects --status pending
- vibe-task-manager run task task-id --force
- vibe-task-manager status project-id --detailedNatural Language (Recommended):
- "Create a project for [description]"
- "Show me all [status] projects"
- "Run the [task name] task"
- "What's the status of [project]?"
- "Parse PRD files for [project name]" (NEW)
- "Import task list from [file path]" (NEW)
- "Parse all PRDs and create projects automatically" (NEW)
For complete documentation, see
src/tools/vibe-task-manager/README.md and the system instructions in VIBE_CODER_MCP_SYSTEM_INSTRUCTIONS.md.Implementation Status & Performance Metrics
$3
The Vibe Coder MCP project follows an epic-based development approach with comprehensive tracking:
`mermaid
gantt
title Vibe Coder MCP Development Progress
dateFormat YYYY-MM-DD
section Core Infrastructure
Tool Registry & Routing :done, epic1, 2024-01-01, 2024-02-15
MCP Server Implementation :done, epic2, 2024-01-15, 2024-03-01
Async Job Management :done, epic3, 2024-02-15, 2024-03-15 section Tool Development
Research & Planning Tools :done, epic4, 2024-02-01, 2024-04-01
Code Map Tool :done, epic5, 2024-03-01, 2024-05-15
Vibe Task Manager Core :done, epic6, 2024-04-01, 2024-06-15
section Advanced Features
Performance Optimization :active, epic7, 2024-06-01, 2024-07-15
Security Implementation :epic8, 2024-07-01, 2024-08-15
Analytics & Monitoring :epic9, 2024-07-15, 2024-09-01
``* Epic 1-5: ā
Complete (100% - Core infrastructure and basic tools)
* Epic 6.1: ā
Complete (98.3% test success rate - Deep MCP Tool Integration)
* Epic 6.2: š In Progress (Performance Optimization - 75% complete)
* Epic 7.1: š Planned (Security Implementation - Ready for implementation)
* Epic 8: š Planned (Advanced Analytics & Monitoring - Designed)
| Metric | Target | Current | Status |
|--------|--------|---------|--------|
| Test Success Rate | 98%+ | 99.9% | ā
Exceeded |
| Response Time (Task Operations) | <200ms | <150ms | ā
Exceeded |
| Response Time (Sync Operations) | <500ms | <350ms | ā
Exceeded |
| Job Completion Rate | 95%+ | 96.7% | ā
Met |
| Memory Usage (Code Map Tool) | <512MB | <400MB | ā
Optimized |
| Unit Test Coverage | >70% | 73% | ā
Met |
| CI/CD Pipeline Speed | <5min | ~3min | ā
Optimized |
| Security Overhead | <50ms | <35ms | ā
Optimized |
| Zero Moc