Skip to content
VS Code

deployhq mcp server for VS Code

io.github.deployhq/deployhq-mcp-server

Model Context Protocol (MCP) server for DeployHQ API integration

client:VS Code transport:stdio runtime:npm

Install deployhq mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "deployhq-email",
      "description": "DEPLOYHQ_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deployhq-api-key",
      "description": "DEPLOYHQ_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deployhq-account",
      "description": "DEPLOYHQ_ACCOUNT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "deployhq-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "deployhq-mcp-server"
      ],
      "env": {
        "DEPLOYHQ_EMAIL": "${input:deployhq-email}",
        "DEPLOYHQ_API_KEY": "${input:deployhq-api-key}",
        "DEPLOYHQ_ACCOUNT": "${input:deployhq-account}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

deployhq mcp server in other clients