VibeCoderMCP MCP server

Guides LLMs through structured software development workflows with feature clarification, PRD generation, and phase-based tracking using a hybrid document storage system.
Back to servers
Provider
Dennison Bertram
Release date
Mar 23, 2025
Language
TypeScript
Stats
8 stars

The Vibe-Coder MCP Server implements the Model Context Protocol to provide a structured workflow for LLM-based coding. It guides the development process through feature clarification, PRD generation, phased implementation, and progress tracking, helping to organize coding tasks in a systematic way.

Installation

To install and set up the Vibe-Coder MCP Server with compatible MCP clients:

  1. Configure your client by updating the configuration file at:

    • MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%/Claude/claude_desktop_config.json

    Add the following configuration:

    {
      "mcpServers": {
        "vibe-coder-mcp": {
          "command": "/path/to/vibe-coder-mcp/build/mcp-server.js"
        }
      }
    }
    

    Replace /path/to/vibe-coder-mcp with the actual path to where you've installed the server.

Debugging

Since MCP servers communicate over stdio, you can use the MCP Inspector for debugging:

npm run inspector

This will provide a URL to access debugging tools in your browser.

Usage

Available Resources

The MCP server manages several resources:

  • Feature details, PRDs, and implementation plans
  • Progress reports and status tracking
  • Phase and task details

Development Workflow

The server guides you through a structured development process:

  1. Feature Clarification: Start by gathering requirements
  2. Documentation: Generate PRDs and implementation plans
  3. Phased Development: Break down implementation into logical phases with tasks
  4. Progress Tracking: Monitor completion of tasks and phases
  5. Completion: Verify all requirements are implemented

Tool Usage

Starting Feature Development

Begin with feature clarification:

{
  "featureId": "feature-123",
  "featureName": "User Authentication",
  "initialDescription": "Implement a secure login system"
}

Creating Documentation

Generate a PRD and implementation plan:

{
  "featureId": "feature-123"
}

Managing Development Phases

Create a development phase:

{
  "featureId": "feature-123",
  "phaseName": "Setup Database Schema",
  "phaseDescription": "Create tables and relationships for user data"
}

Add tasks to phases:

{
  "featureId": "feature-123",
  "phaseId": "phase-456",
  "taskName": "Create users table",
  "taskDescription": "Define user table with appropriate fields"
}

Update progress:

{
  "featureId": "feature-123",
  "phaseId": "phase-456",
  "status": "completed"
}
{
  "featureId": "feature-123",
  "phaseId": "phase-456",
  "taskId": "task-789",
  "status": "completed"
}

Get guidance on next steps:

{
  "featureId": "feature-123"
}

Document Management

The server includes document storage capabilities for PRDs and implementation plans.

Default Storage Location

Documents are automatically stored in:

  • documents/{featureId}/prd.md - Product Requirements Document
  • documents/{featureId}/implementation-plan.md - Implementation Plan

Retrieving Document Paths

To get the path of a document:

{
  "featureId": "feature-123",
  "documentType": "prd"
}

Custom Storage Locations

Save documents to custom locations:

{
  "featureId": "feature-123",
  "documentType": "prd",
  "filePath": "/custom/path/feature-123-prd.md"
}

How to add this MCP server to Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "cursor-rules-mcp": {
            "command": "npx",
            "args": [
                "-y",
                "cursor-rules-mcp"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later