Dev Workflow MCP Server
D

Dev Workflow MCP Server

The Development Workflow MCP Server helps developers follow a standardized workflow, ensuring code quality, testing, and documentation integrity.
2 points
6.5K

What is the Development Workflow MCP Server?

This is a Model Context Protocol (MCP) server that acts as your 'coding conscience', guiding you to follow a structured development process. It ensures that you complete all necessary steps before committing code: writing tests, passing verification, updating documentation, and finally committing and publishing.

How to use the Development Workflow MCP Server?

Integrate and use it through AI assistants (such as Claude Desktop, Windsurf, or Antigravity). After installation, the AI assistant will guide you to complete development tasks step by step, ensuring that no key steps are missed.

Use Cases

Suitable for all development projects that need to maintain code quality, especially team collaboration, open - source project maintenance, enterprise applications that require strict test coverage, and individual developers who want to establish good development habits.

Main Features

Structured Workflow
Enforce a 7 - step development process: 1) Define the task 2) Implement the function 3) Create tests 4) Run tests 5) Update documentation 6) Commit and push 7) Record the release
Test Enforcement Requirement
Prevent the submission of code that has not passed tests, ensure that all changes are covered by tests, or provide a reasonable reason to skip tests.
Documentation Reminder
Require relevant documentation (README, API documentation, inline comments, etc.) to be updated for each change to ensure knowledge transfer.
History Tracking
Record all completed tasks and workflow status for easy review and audit of the development process.
Multi - Client Support
Support multiple MCP clients such as Claude Desktop, Windsurf, and Antigravity, and configure independent user sessions.
Multi - Database Support
Support SQLite (default), MySQL, and PostgreSQL to adapt to different deployment environments.
Modular Architecture
The modular processor architecture was introduced in v1.8.0 to improve code maintainability and packaging efficiency.
Web Dashboard
Built - in lightweight Web interface for visual viewing of workflow history and statistical information.
Advantages
Improve code quality: Mandatory testing and documentation ensure code reliability.
Establish good habits: Guide developers to follow best practices.
Reduce errors: Prevent the submission of untested or undocumented code.
Team consistency: Ensure that all members follow the same workflow.
History traceability: Completely record the development process for easy problem troubleshooting.
Flexible deployment: Support local and cloud deployment to adapt to different environments.
Limitations
Learning curve: It takes time to adapt to the structured workflow.
Extra steps: More steps need to be completed compared to direct code submission.
Dependence on AI assistants: Need to integrate with MCP clients for use.
Configuration complexity: Multi - database and deployment options require certain technical knowledge.
Windows dependence: Installing from source code requires Python and Visual Studio build tools.

How to Use

Install the Server
Install the MCP server package in the project or install it from the source code.
Configure the AI Client
Configure the MCP server connection in Claude Desktop, Windsurf, or Antigravity.
Start a Development Task
Start a new task using the start_task tool through the AI assistant.
Follow the Workflow Steps
Complete in sequence: Implement the function → Create tests → Run tests → Update documentation → Commit and push → Record the release.
Complete the Task
Use the complete_task tool to end the current task and prepare to start the next one.

Usage Examples

Develop a New Feature: User Authentication
Add user authentication functionality to the login page.
Fix a Bug: Data Validation Error
Fix the logical error in user input data validation.
Execute the Full Workflow
Execute all steps of the full workflow at once.
View Development History
Review the tasks completed in the past week.

Frequently Asked Questions

What is the MCP server? What do I need to install to use it?
Will this server modify my code?
What if my project does not require a release (such as a documentation project)?
Can multiple developers use it in the same project?
How can I view my workflow history?
Can I force a commit when the test fails?
Which databases are supported? How to configure them?
What should I do if the Windows installation fails?

Related Resources

GitHub Repository
Source code, issue tracking, and contribution guidelines.
npm Package Page
Official npm package. View versions and download statistics.
Model Context Protocol Official Website
Official documentation and specifications of the MCP protocol.
GCP Deployment Guide
Detailed guide for deploying on Google Cloud Platform.
Antigravity Integration Guide
Steps for configuring and using the MCP server in Antigravity.
Web Dashboard Documentation
Instructions for using the built - in Web interface and API documentation.

Installation

Copy the following command to your Client for configuration
{
  "mcpServers": {
    "dev-workflow": {
      "command": "node",
      "cwd": "<PROJECT_ROOT>",
      "args": ["index.js"],
      "env": {
        "DEV_WORKFLOW_DB_TYPE": "postgres",
        "DEV_WORKFLOW_DB_URL": "postgres://USER:PASS@HOST:5432/devworkflow"
      }
    }
  }
}

{
  "mcpServers": {
    "dev-workflow": {
      "command": "node",
      "args": ["<PROJECT_ROOT>/index.js"]
    }
  }
}

{
  "mcpServers": {
    "dev-workflow": {
      "command": "node",
      "args": ["<PROJECT_ROOT>\\index.js"]
    }
  }
}

{
  "mcpServers": {
    "dev-workflow": {
      "command": "node",
      "cwd": "/Users/alex/code/dev-workflow-mcp-server",
      "args": ["index.js"],
      "env": {
        "DEV_WORKFLOW_DB_TYPE": "postgres",
        "DEV_WORKFLOW_DB_URL": "postgres://devworkflow:devworkflow_secure_password@34.50.121.142:5432/devworkflow"
      }
    }
  }
}

{
  "mcpServers": {
    "dev-workflow": {
      "command": "node",
      "args": ["<PROJECT_ROOT>\\index.js"],
      "env": {
        "DEV_WORKFLOW_USER_ID": "your_user_id"
      }
    }
  }
}

{
  "mcpServers": {
    "dev-workflow": {
      "command": "node",
      "args": ["path/to/server/index.js"],
      "env": {
        "DEV_WORKFLOW_USER_ID": "antigravity_user"
      }
    }
  }
}

{
  "mcpServers": {
    "dev-workflow": {
      "command": "node",
      "args": ["path/to/server/index.js"],
      "env": {
        "DEV_WORKFLOW_USER_ID": "windsurf_user"
      }
    }
  }
}
Note: Your key is sensitive information, do not share it with anyone.

Alternatives

R
Rsdoctor
Rsdoctor is a build analysis tool specifically designed for the Rspack ecosystem, fully compatible with webpack. It provides visual build analysis, multi - dimensional performance diagnosis, and intelligent optimization suggestions to help developers improve build efficiency and engineering quality.
TypeScript
7.2K
5 points
N
Next Devtools MCP
The Next.js development tools MCP server provides Next.js development tools and utilities for AI programming assistants such as Claude and Cursor, including runtime diagnostics, development automation, and document access functions.
TypeScript
7.1K
5 points
T
Testkube
Testkube is a test orchestration and execution framework for cloud-native applications, providing a unified platform to define, run, and analyze tests. It supports existing testing tools and Kubernetes infrastructure.
Go
5.5K
5 points
M
MCP Windbg
An MCP server that integrates AI models with WinDbg/CDB for analyzing Windows crash dump files and remote debugging, supporting natural language interaction to execute debugging commands.
Python
8.1K
5 points
R
Runno
Runno is a collection of JavaScript toolkits for securely running code in multiple programming languages in environments such as browsers and Node.js. It achieves sandboxed execution through WebAssembly and WASI, supports languages such as Python, Ruby, JavaScript, SQLite, C/C++, and provides integration methods such as web components and MCP servers.
TypeScript
6.4K
5 points
N
Netdata
Netdata is an open-source real-time infrastructure monitoring platform that provides second-level metric collection, visualization, machine learning-driven anomaly detection, and automated alerts. It can achieve full-stack monitoring without complex configuration.
Go
6.2K
5 points
M
MCP Server
The Mapbox MCP Server is a model context protocol server implemented in Node.js, providing AI applications with access to Mapbox geospatial APIs, including functions such as geocoding, point - of - interest search, route planning, isochrone analysis, and static map generation.
TypeScript
6.1K
4 points
U
Uniprof
Uniprof is a tool that simplifies CPU performance analysis. It supports multiple programming languages and runtimes, does not require code modification or additional dependencies, and can perform one-click performance profiling and hotspot analysis through Docker containers or the host mode.
TypeScript
7.8K
4.5 points
N
Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
18.9K
4.5 points
G
Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
20.7K
4.3 points
D
Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
59.7K
4.3 points
M
Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
30.3K
5 points
U
Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
25.3K
5 points
F
Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
55.5K
4.5 points
G
Gmail MCP Server
A Gmail automatic authentication MCP server designed for Claude Desktop, supporting Gmail management through natural language interaction, including complete functions such as sending emails, label management, and batch operations.
TypeScript
18.9K
4.5 points
C
Context7
Context7 MCP is a service that provides real-time, version-specific documentation and code examples for AI programming assistants. It is directly integrated into prompts through the Model Context Protocol to solve the problem of LLMs using outdated information.
TypeScript
81.2K
4.7 points
AIBase
Zhiqi Future, Your AI Solution Think Tank
© 2026AIBase