AgentHubAgentHub

hatchbox

MCP ServerMCP Registry官方收录

com.pulsemcp/hatchbox · v0.1.2

MCP server for Hatchbox Rails hosting — env var inspection, deploys, and process monitoring.

概览

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

安装

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

{
  "mcpServers": {
    "hatchbox": {
      "command": "npx",
      "args": [
        "-y",
        "hatchbox-mcp-server"
      ],
      "env": {
        "HATCHBOX_API_KEY": "<HATCHBOX_API_KEY>",
        "HATCHBOX_ACCOUNT_ID": "<HATCHBOX_ACCOUNT_ID>",
        "HATCHBOX_APP_ID": "<HATCHBOX_APP_ID>",
        "HATCHBOX_DEPLOY_KEY": "<HATCHBOX_DEPLOY_KEY>"
      }
    }
  }
}

环境变量

HATCHBOX_API_KEY必填secret

API key for authentication with Hatchbox.

HATCHBOX_ACCOUNT_ID必填

Hatchbox account ID visible in the dashboard URL.

HATCHBOX_APP_ID必填

Hatchbox application ID visible in the dashboard URL.

HATCHBOX_DEPLOY_KEY必填secret

Deployment webhook key for triggering deployments.

WEB_SERVER_IP_ADDRESS可选

IP address of Hatchbox server for SSH access to read environment variables.

SSH_KEY_PATH可选

Path to SSH private key for server access.

HATCHBOX_APP_NAME可选

App name to filter processes if multiple apps run on the same server.

READONLY可选

Set to false to enable write operations for environment variables.

ALLOW_DEPLOYS可选

Set to false to disable deployment operations.

相关资源

统一 Manifest

{
  "id": "com.pulsemcp/hatchbox",
  "type": "mcp-server",
  "version": "0.1.2",
  "displayName": "hatchbox",
  "description": "MCP server for Hatchbox Rails hosting — env var inspection, deploys, and process monitoring.",
  "repository": {
    "url": "https://github.com/pulsemcp/mcp-servers",
    "source": "github",
    "subfolder": "experimental/hatchbox"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "hatchbox-mcp-server",
        "version": "0.1.2",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "HATCHBOX_API_KEY",
            "description": "API key for authentication with Hatchbox.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "HATCHBOX_ACCOUNT_ID",
            "description": "Hatchbox account ID visible in the dashboard URL.",
            "isRequired": true
          },
          {
            "name": "HATCHBOX_APP_ID",
            "description": "Hatchbox application ID visible in the dashboard URL.",
            "isRequired": true
          },
          {
            "name": "HATCHBOX_DEPLOY_KEY",
            "description": "Deployment webhook key for triggering deployments.",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "WEB_SERVER_IP_ADDRESS",
            "description": "IP address of Hatchbox server for SSH access to read environment variables."
          },
          {
            "name": "SSH_KEY_PATH",
            "description": "Path to SSH private key for server access."
          },
          {
            "name": "HATCHBOX_APP_NAME",
            "description": "App name to filter processes if multiple apps run on the same server."
          },
          {
            "name": "READONLY",
            "description": "Set to false to enable write operations for environment variables."
          },
          {
            "name": "ALLOW_DEPLOYS",
            "description": "Set to false to disable deployment operations."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "com.pulsemcp/hatchbox",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/com.pulsemcp%2Fhatchbox/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
hatchbox — MCP Server 安装与配置 · AgentHub