Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP servers for real-time development monitoring and interactive pair programming.

README.md

AMS Development MCP Servers

MCP servers for real-time development monitoring and interactive pair programming

![License: MIT](https://opensource.org/licenses/MIT) ![Node.js Version](https://nodejs.org) ![pnpm](https://pnpm.io/)

![process-manager](https://www.npmjs.com/package/@ams-dev/process-manager) ![docker-manager](https://www.npmjs.com/package/@ams-dev/docker-manager) ![dev-watcher](https://www.npmjs.com/package/@ams-dev/dev-watcher) ![browser-inspector](https://www.npmjs.com/package/@ams-dev/browser-inspector)

![CI](https://github.com/mastoica/vibecoding-mcp-servers/actions/workflows/test.yml)

Overview

A suite of Model Context Protocol (MCP) servers designed to enhance AI-assisted development workflows. These servers enable AI assistants like Claude Code to actively monitor development processes, inspect running applications, and participate in interactive debugging sessions.

Packages

This monorepo contains four interconnected MCP servers:

@ams-dev/process-manager · npm

Monitor and control development processes (nx serve, npm run, etc.)

  • Start, stop, and restart processes
  • Stream and filter process logs in real-time
  • Send input to interactive processes
  • Pattern-based monitoring for errors and warnings

@ams-dev/docker-manager · npm

Control and inspect Docker containers

  • List, start, stop, and restart containers
  • Execute commands inside containers
  • Stream container logs
  • Inspect container configuration and state

@ams-dev/dev-watcher · npm

Real-time error detection and pattern matching across all development sources

  • Aggregate logs from processes and containers
  • Regex pattern matching for errors and warnings
  • Alert deduplication and severity classification
  • Integration with browser console logs

@ams-dev/browser-inspector · npm

Browser automation, inspection, monitoring, and performance analysis using Puppeteer

  • Navigate and interact with web pages (click, type, wait for elements)
  • Monitor console logs and network requests in real-time
  • Capture screenshots and extract page content
  • Execute custom JavaScript in browser context
  • Performance metrics (load times, FCP, resource counts)
  • Automated accessibility audits
  • Cookie and localStorage management

Quick Start

Installation

# Install all packages globally
npm install -g @ams-dev/process-manager @ams-dev/docker-manager @ams-dev/dev-watcher @ams-dev/browser-inspector

# Or use with npx (no installation required)
npx @ams-dev/process-manager

Configuration

Add to your Claude Code MCP configuration (~/.config/claude/mcp.json):

{
  "mcpServers": {
    "process-manager": {
      "command": "npx",
      "args": ["-y", "@ams-dev/process-manager"]
    },
    "docker-manager": {
      "command": "npx",
      "args": ["-y", "@ams-dev/docker-manager"]
    },
    "dev-watcher": {
      "command": "npx",
      "args": ["-y", "@ams-dev/dev-watcher"]
    },
    "browser-inspector": {
      "command": "npx",
      "args": ["-y", "@ams-dev/browser-inspector"]
    }
  }
}

Use Cases

NX Monorepo Development

Claude: "I'll start the admin and products services for you"
- Starts both services with process-manager
- Monitors for compile errors
- Reports when servers are ready

Docker-based Development

Developer: "Set up the local environment"
Claude: "Starting your database containers"
- Starts PostgreSQL and Redis containers
- Checks container health
- Reports when services are ready

Interactive Debugging

Developer: "Why is the API slow?"
Claude:
- Checks API process logs for slow queries
- Inspects PostgreSQL container logs
- Reports findings with specific line references

Development

This project uses PNPM workspaces for monorepo management.

# Clone the repository
git clone https://github.com/mastoica/vibecoding-mcp-servers.git
cd vibecoding-mcp-servers

# Install dependencies
pnpm install

# Build all packages
pnpm build

# Run tests
pnpm test

Documentation

Requirements

  • Node.js >= 18.0.0
  • PNPM >= 8.0.0
  • Docker (optional, for docker-manager)

Contributing

Contributions are welcome! Please read our contributing guidelines before submitting PRs.

License

MIT © mastoica

Roadmap

  • [x] Repository setup
  • [ ] Process Manager MCP (v0.1.0)
  • [ ] Docker Manager MCP (v0.1.0)
  • [ ] Dev Watcher MCP (v0.1.0)
  • [ ] Complete documentation
  • [ ] CI/CD pipeline
  • [ ] Publish to npm

---

Status: 🚧 Work in Progress - Initial development phase

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Observability servers.