AgentHubAgentHub

Dr.Deploy

MCP ServerMCP Registry官方收录

io.github.Dr-Deploy/drdeploy-mcp · v0.1.4

MCP tools for drdeploy: scan deployed sites, list, get findings, check status.

概览

Dr.Deploy 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "drdeploy-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@drdeploy/mcp"
      ],
      "env": {
        "DRDEPLOY_TOKEN": "<DRDEPLOY_TOKEN>"
      }
    }
  }
}

环境变量

DRDEPLOY_TOKEN必填secret

Bearer token for the drdeploy API. Run `drdeploy login` to mint one.

DRDEPLOY_API_HOST可选

Override the API host. Defaults to https://drdeploy.dev.

相关资源

统一 Manifest

{
  "id": "io.github.Dr-Deploy/drdeploy-mcp",
  "type": "mcp-server",
  "version": "0.1.4",
  "displayName": "Dr.Deploy",
  "description": "MCP tools for drdeploy: scan deployed sites, list, get findings, check status.",
  "repository": {
    "url": "https://github.com/Dr-Deploy/drdeploy",
    "source": "github",
    "subfolder": "packages/mcp"
  },
  "homepage": "https://drdeploy.dev",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@drdeploy/mcp",
        "version": "0.1.4",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "DRDEPLOY_TOKEN",
            "description": "Bearer token for the drdeploy API. Run `drdeploy login` to mint one.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "DRDEPLOY_API_HOST",
            "description": "Override the API host. Defaults to https://drdeploy.dev."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.Dr-Deploy/drdeploy-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.Dr-Deploy%2Fdrdeploy-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Dr.Deploy — MCP Server 安装与配置 · AgentHub