AgentHubAgentHub

deployhq-mcp-server

MCP ServerMCP Registry官方收录

io.github.deployhq/deployhq-mcp-server · v1.2.2

Model Context Protocol (MCP) server for DeployHQ API integration

概览

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

安装

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

{
  "mcpServers": {
    "deployhq-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "deployhq-mcp-server"
      ],
      "env": {
        "DEPLOYHQ_EMAIL": "<DEPLOYHQ_EMAIL>",
        "DEPLOYHQ_API_KEY": "<DEPLOYHQ_API_KEY>",
        "DEPLOYHQ_ACCOUNT": "<DEPLOYHQ_ACCOUNT>"
      }
    }
  }
}

环境变量

DEPLOYHQ_EMAIL必填

Your DeployHQ login email address

DEPLOYHQ_API_KEY必填secret

Your DeployHQ password or API key

DEPLOYHQ_ACCOUNT必填

Your DeployHQ account name (from URL: https://ACCOUNT.deployhq.com)

LOG_LEVEL可选

Log verbosity level (ERROR, INFO, or DEBUG)

相关资源

统一 Manifest

{
  "id": "io.github.deployhq/deployhq-mcp-server",
  "type": "mcp-server",
  "version": "1.2.2",
  "displayName": "deployhq-mcp-server",
  "description": "Model Context Protocol (MCP) server for DeployHQ API integration",
  "repository": {
    "url": "https://github.com/deployhq/deployhq-mcp-server",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "deployhq-mcp-server",
        "version": "1.2.2",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "DEPLOYHQ_EMAIL",
            "description": "Your DeployHQ login email address",
            "isRequired": true
          },
          {
            "name": "DEPLOYHQ_API_KEY",
            "description": "Your DeployHQ password or API key",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "DEPLOYHQ_ACCOUNT",
            "description": "Your DeployHQ account name (from URL: https://ACCOUNT.deployhq.com)",
            "isRequired": true
          },
          {
            "name": "LOG_LEVEL",
            "description": "Log verbosity level (ERROR, INFO, or DEBUG)"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.deployhq/deployhq-mcp-server",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.deployhq%2Fdeployhq-mcp-server/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
deployhq-mcp-server — MCP Server 安装与配置 · AgentHub