Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
Dr-Deploy avatar

Dr.Deploy

  • Updated May 7, 2026
  • Dr-Deploy/drdeploy

Dr.Deploy MCP is an MCP server that exposes scan, list, findings, and status tools for deployed sites via the drdeploy API.

About

Dr.Deploy MCP connects coding agents to the Dr.Deploy API so you can scan already-deployed sites, enumerate targets, retrieve findings, and poll scan status through MCP tools. For developers who ship fast to drdeploy.dev or custom hosts, this closes the loop between “it’s live” and “is it obviously broken or misconfigured?” without opening a separate dashboard for every check. Registry metadata specifies npm package @drdeploy/mcp at version 0.1.4, stdio transport with runtimeHint npx, and a required secret DRDEPLOY_TOKEN from `drdeploy login`. Skillselion lists it under Ship → Security as the primary shelf; the same scans support Operate monitoring when you re-check production after changes. Intermediate setup: CLI login for token, MCP config, and network access to the API host.

  • MCP tools: scan deployed sites, list, get findings, check status
  • npx @drdeploy/mcp v0.1.4 stdio with DRDEPLOY_TOKEN (drdeploy login)
  • Optional DRDEPLOY_API_HOST override default https://drdeploy.dev
  • Publisher site https://drdeploy.dev, package in Dr-Deploy/drdeploy monorepo

Dr.Deploy by the numbers

  • Data as of Jul 7, 2026 (Skillselion catalog sync)
terminal
claude mcp add --env DRDEPLOY_TOKEN=YOUR_DRDEPLOY_TOKEN --env DRDEPLOY_API_HOST=YOUR_DRDEPLOY_API_HOST drdeploy-mcp -- npx -y @drdeploy/mcp

Add your badge

Show developers this MCP server is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Package@drdeploy/mcp
TransportSTDIO
AuthRequired
Last updatedMay 7, 2026
RepositoryDr-Deploy/drdeploy

What it does

Scan live deployed sites from your agent—list targets, run scans, pull findings, and check status—without leaving Dr.Deploy’s API workflow.

Who is it for?

Best when you use Dr.Deploy and want agent-driven post-deploy scans and finding review on drdeploy.dev or custom API hosts.

Skip if: Skip if you have no deployed web surface yet, or those and need local SAST only with no live URL scanning service.

What you get

Once DRDEPLOY_TOKEN is set and the server is registered, your agent can launch scans and read findings on deployed sites before and after launch.

  • Agent-initiated scans of deployed sites
  • Structured findings and scan status from Dr.Deploy API

By the numbers

  • Package version 0.1.4
  • Default API host: https://drdeploy.dev
  • Required env: DRDEPLOY_TOKEN
README.md

Dr.Deploy

A live monitor for shipped websites. Watches your live URL and catches the embarrassing things you didn't notice — leaked API keys, broken og:image, missing favicons, exposed .env files, security header gaps. Within seconds of every deploy.

This repo is the public source for everything that runs outside the Dr.Deploy service: the CLI, the MCP server, and the Claude Code skills.

What's here

Package What it is Install
@drdeploy/cli drdeploy command-line tool. Single static binary. macOS + Linux. npm i -g @drdeploy/cli or curl -fsSL drdeploy.dev/install | sh
@drdeploy/mcp Model Context Protocol server. Bundled into the CLI binary; published separately for non-CLI MCP use cases. npm i @drdeploy/mcp
@drdeploy/skills Claude Code / Cursor / Cline skills. Drops SKILL.md files + downloads the binary + adds drdeploy routing to CLAUDE.md. npx @drdeploy/skills setup

Install paths

The same product, six surfaces:

# Default (any OS, any user)
curl -fsSL https://drdeploy.dev/install | sh

# Mac power users
brew install dr-deploy/tap/drdeploy

# Node ecosystem devs
npm install -g @drdeploy/cli

# Claude Code / AI-editor users
npx @drdeploy/skills setup

# Claude Code (native plugin marketplace)
> /plugin marketplace add Dr-Deploy/drdeploy
> /plugin install drdeploy

# Direct download (Windows + manual installs)
# https://github.com/Dr-Deploy/drdeploy/releases/latest

MCP server (for AI editors)

# Standalone via npm:
DRDEPLOY_TOKEN=$(cat ~/.config/drdeploy/token) npx @drdeploy/mcp

# Or bundled in the CLI binary:
drdeploy mcp install --client claude    # writes ~/.claude/mcp_servers.json
drdeploy mcp install --client cursor    # writes ~/.cursor/mcp.json
drdeploy mcp install --client cline     # writes ~/.cline/mcp_settings.json

The MCP server is also published to the official MCP Registry at io.github.dr-deploy/drdeploy-mcp, which means it's discoverable from Smithery, mcp.so, and any other MCP-aware client that pulls from the canonical registry.

What does it actually catch

  • Leaked API keys in your live JS bundle (OpenAI sk-*, Anthropic sk-ant-*, Stripe sk_live_*, AWS AKIA*, GitHub ghp_*, Slack xoxb-*)
  • Broken or missing og:image, twitter:card, favicon
  • Exposed .env, .git/config, .DS_Store at common paths
  • Missing security headers (CSP, HSTS, X-Frame-Options)
  • TLS issues (expiring certs, weak ciphers, mixed content)
  • Title / meta description truncation, broken canonical URLs
  • 37+ checks across 7 categories. Full list in drdeploy.dev/checks.

Usage

$ drdeploy login
$ drdeploy add example.com
$ drdeploy scan example.com
✓ Scan queued (run #1247)
  Watch progress on the dashboard or rerun: drdeploy scan example.com

For Claude Code / Cursor / Cline:

$ npx @drdeploy/skills setup
✓ drdeploy CLI 0.1.0 installed
✓ Wrote ~/.claude/skills/drdeploy/SKILL.md
? Append drdeploy routing rules to CLAUDE.md? (Y/n)

# Now in your AI editor:
> /drdeploy scan myapp.com

Development

git clone https://github.com/Dr-Deploy/drdeploy.git
cd drdeploy
bun install
bun run typecheck
bun test

This is a Bun workspace. Each package has its own package.json and TS config extending tsconfig.base.json.

Building the CLI binary

cd packages/cli
bun run build           # current platform → ./dist/drdeploy
bun run build:all       # all 4 platforms → ./dist/drdeploy-{darwin,linux}-{arm64,x64}

Releases

Releases are managed via Changesets. To propose a release:

bun run changeset       # interactive: pick packages + bump type + write changelog
git commit -am "chore: release"
# Open PR. Merge. Tag. CI builds binaries + publishes to npm.

License

MIT. See LICENSE.

Links

Recommended MCP Servers

How it compares

Live deployment scanning API via MCP, not a generic OWASP ZAP skill or hosting panel.

FAQ

Who is Dr.Deploy MCP for?

Developers on Dr.Deploy who want Claude Code or Cursor to scan live sites and read security findings through MCP.

When should I use Dr.Deploy MCP?

Right after deploy or before promoting a release, and again in production when you need to re-scan after infra or config changes.

How do I add Dr.Deploy MCP to my agent?

Run `drdeploy login` to get DRDEPLOY_TOKEN, add npx @drdeploy/mcp as a stdio MCP server with that env var (optional DRDEPLOY_API_HOST), then restart your agent.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.