Command Palette

Search for a command to run...

UnylyUnyly
Browse all

tao-izm/devpulse-mcp

FreeNot checked

Zero-config MCP server that gives AI coding assistants a real-time diagnostic snapshot of your local dev environment. Detects framework, running services, recen

GitHubEmbed

About

Zero-config MCP server that gives AI coding assistants a real-time diagnostic snapshot of your local dev environment. Detects framework, running services, recent errors, and git state in one call.

README

An MCP server that lets your AI coding assistant see what's actually happening in your dev environment.

When you're debugging with Claude Code or Cursor, the AI has no idea if your dev server is running, what errors just appeared in the logs, or what branch you're on. You end up copy-pasting the same context every session. devpulse fixes that with one tool call.

What your AI sees

{
  "diagnosis": {
    "health": "broken",
    "primary_issue": "Port conflict — dev server cannot start",
    "suggested_action": "Kill the process using that port or change your dev server port",
    "confidence": "high"
  },
  "session": {
    "project": "my-app",
    "framework": "nextjs",
    "branch": "feat/auth",
    "uncommitted_files": 3
  },
  "services": {
    "running": [],
    "expected_but_missing": [3000]
  },
  "recent_errors": [
    { "time": "2m ago", "level": "ERROR", "message": "EADDRINUSE :::3000" }
  ],
  "env": {
    "node": "20.11.0",
    "package_manager": "pnpm"
  }
}

Instead of asking you what's wrong, the AI already knows.

Setup

Claude Code

claude mcp add devpulse -- npx -y devpulse-mcp

Cursor / Claude Desktop / Windsurf

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

No API key. No account. No config file.

Tools

  • get_session_snapshot — full diagnostic snapshot, call this first
  • get_recent_errors — recent errors from your log files, secrets redacted
  • get_running_services — what's on your dev ports and what's missing

Supported frameworks

Detected automatically from your package.json — Next.js, Vite, Express, FastAPI. More coming.

Privacy

Runs entirely on your machine. No data leaves your computer. API keys and secrets are automatically stripped from log output.

License

MIT

from github.com/tao-izm/devpulse-mcp

Install tao-izm/devpulse-mcp in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install tao-izm-devpulse-mcp

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add tao-izm-devpulse-mcp -- npx -y devpulse-mcp

FAQ

Is tao-izm/devpulse-mcp MCP free?

Yes, tao-izm/devpulse-mcp MCP is free — one-click install via Unyly at no cost.

Does tao-izm/devpulse-mcp need an API key?

No, tao-izm/devpulse-mcp runs without API keys or environment variables.

Is tao-izm/devpulse-mcp hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install tao-izm/devpulse-mcp in Claude Desktop, Claude Code or Cursor?

Open tao-izm/devpulse-mcp on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare tao-izm/devpulse-mcp with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs