
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@standardbeagle/devtool-mcp
Advanced tools
MCP server providing development tooling capabilities - project detection, process management, reverse proxy with frontend diagnostics
An MCP (Model Context Protocol) server that provides comprehensive development tooling capabilities to AI assistants.
devtool-mcp bridges the gap between AI assistants and development workflows by providing:
cd docs-site
npm install
npm start
Then open http://localhost:3000/devtool-mcp/.
Documentation is automatically deployed to GitHub Pages when changes are pushed to the main branch. You can also manually trigger deployment from the Actions tab.
To set up GitHub Pages for your fork:
npm (recommended for Node.js users):
npm install -g @standardbeagle/devtool-mcp
pip/uv (recommended for Python users):
pip install devtool-mcp
# or
uv pip install devtool-mcp
One-liner bash install:
curl -fsSL https://raw.githubusercontent.com/standardbeagle/devtool-mcp/main/install.sh | bash
From source:
git clone https://github.com/standardbeagle/devtool-mcp.git
cd devtool-mcp
make build
make install-local
Go install:
go install github.com/standardbeagle/devtool-mcp@latest
Add to your MCP client configuration:
{
"mcpServers": {
"devtool": {
"command": "/path/to/devtool-mcp"
}
}
}
// Detect project type
detect {path: "."}
→ {type: "node", scripts: ["dev", "build", "test"]}
// Start dev server
run {script_name: "dev"}
→ {process_id: "dev", state: "running"}
// Set up debugging proxy
proxy {action: "start", id: "app", target_url: "http://localhost:3000", port: 8080}
→ {listen_addr: ":8080"}
// Debug frontend issues
proxy {action: "exec", id: "app", code: "window.__devtool.inspect('#my-button')"}
→ Full element analysis including position, styles, accessibility
Automatically detect Go, Node.js, and Python projects with available commands:
detect {path: "."}
→ {
type: "node",
package_manager: "pnpm",
scripts: ["dev", "build", "test", "lint"]
}
Run scripts with output capture, filtering, and graceful shutdown:
run {script_name: "test", mode: "foreground"}
→ {exit_code: 0, runtime: "12.3s"}
proc {action: "output", process_id: "test", grep: "FAIL"}
→ Filter output for failures
Transparent HTTP proxy with traffic logging and frontend instrumentation:
proxy {action: "start", id: "debug", target_url: "http://localhost:3000", port: 8080}
// All traffic is logged
proxylog {proxy_id: "debug", types: ["http", "error"]}
// JavaScript errors are captured automatically
proxylog {proxy_id: "debug", types: ["error"]}
→ {message: "TypeError...", stack: "...", source: "main.js:142"}
50+ primitives injected into all HTML pages:
window.__devtool.inspect('#element') // Comprehensive analysis
window.__devtool.diagnoseLayout() // Find layout issues
window.__devtool.auditAccessibility() // A11y audit with score
window.__devtool.screenshot('bug') // Capture screenshot
window.__devtool.highlight('.item') // Visual debugging
window.__devtool.selectElement() // Interactive picker
| Tool | Description |
|---|---|
detect | Detect project type and available scripts |
run | Execute scripts or raw commands |
proc | Monitor, query output, stop processes |
proxy | Manage reverse proxies |
proxylog | Query traffic logs and errors |
currentpage | View grouped page sessions |
daemon | Manage the background daemon service |
┌─────────────────────────────────────────────────────────────┐
│ MCP Tools Layer │
│ detect │ run │ proc │ proxy │ proxylog │ currentpage │
├─────────────────────────────────────────────────────────────┤
│ Business Logic Layer │
│ ProjectDetector │ ProcessManager │ ProxyManager │
├─────────────────────────────────────────────────────────────┤
│ Infrastructure Layer │
│ RingBuffer │ TrafficLogger │ PageTracker │
└─────────────────────────────────────────────────────────────┘
Key design decisions:
sync.Map and atomics# Build
make build
# Run tests
make test
# Format and lint
make fmt
make vet
make lint
# Run with coverage
make test-coverage
docs-site/
├── docs/
│ ├── intro.md # Overview
│ ├── getting-started.md # Installation & setup
│ ├── features/ # Feature guides
│ │ ├── project-detection.md
│ │ ├── process-management.md
│ │ ├── reverse-proxy.md
│ │ └── frontend-diagnostics.md
│ ├── concepts/ # Architecture
│ │ ├── architecture.md
│ │ ├── lock-free-design.md
│ │ └── graceful-shutdown.md
│ ├── api/ # API reference
│ │ ├── detect.md
│ │ ├── run.md
│ │ ├── proc.md
│ │ ├── proxy.md
│ │ ├── proxylog.md
│ │ ├── currentpage.md
│ │ └── frontend/ # Frontend API (50+ functions)
│ │ ├── overview.md
│ │ ├── element-inspection.md
│ │ ├── accessibility.md
│ │ └── ...
│ └── use-cases/ # Real-world guides
│ ├── debugging-web-apps.md
│ ├── automated-testing.md
│ ├── performance-monitoring.md
│ ├── ci-cd-integration.md
│ ├── accessibility-auditing.md
│ └── frontend-error-tracking.md
MIT
Contributions welcome! Please read the documentation first to understand the architecture and design decisions.
FAQs
DEPRECATED: This package has been renamed to @standardbeagle/agnt. Please switch to the new package.
The npm package @standardbeagle/devtool-mcp receives a total of 42 weekly downloads. As such, @standardbeagle/devtool-mcp popularity was classified as not popular.
We found that @standardbeagle/devtool-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.