The Hatchbox MCP server provides tools to interact with Hatchbox's API, allowing you to manage environment variables and deployments for your Rails applications directly from your AI assistant. It supports environment variable management and deployment control with built-in security features.
npm install hatchbox-mcp-server
HATCHBOX_API_KEY: Your Hatchbox API key for authenticationHATCHBOX_ACCOUNT_ID: Your Hatchbox account IDHATCHBOX_APP_ID: Your Hatchbox application IDHATCHBOX_DEPLOY_KEY: Your deployment webhook keyWEB_SERVER_IP_ADDRESS: IP address of your Hatchbox server (enables getEnvVars and getEnvVar tools)SSH_KEY_PATH: Path to SSH private key (defaults to ~/.ssh/id_rsa)HATCHBOX_APP_NAME: App name to filter processes if multiple apps on serverREADONLY: Set to false to enable write operations (default: true)ALLOW_DEPLOYS: Set to false to disable deployment operations (default: true)You can find these values in your Hatchbox dashboard:
To enable the getEnvVars and getEnvVar tools, you need SSH access to your Hatchbox server:
Add your SSH public key to the deploy user on your Hatchbox server:
ssh-copy-id deploy@your-server-ip
Test SSH access:
ssh deploy@your-server-ip "echo 'SSH access working'"
Configure the MCP server with your server's IP address
If you have multiple Rails applications running on the same Hatchbox server, specify the HATCHBOX_APP_NAME to identify which app's environment variables to read:
# Example: If your server has multiple apps running
# App 1: mystore (running on port 3000)
# App 2: blog (running on port 3001)
# To read env vars for the 'mystore' app:
HATCHBOX_APP_NAME=mystore
# To read env vars for the 'blog' app:
HATCHBOX_APP_NAME=blog
Add the server to your Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"hatchbox": {
"command": "npx",
"args": ["-y", "hatchbox-mcp-server"],
"env": {
"HATCHBOX_API_KEY": "your-api-key-here",
"HATCHBOX_ACCOUNT_ID": "1852",
"HATCHBOX_APP_ID": "8540",
"HATCHBOX_DEPLOY_KEY": "your-deploy-key-here",
"// Optional - for SSH access to read env vars": "",
"WEB_SERVER_IP_ADDRESS": "165.232.133.75",
"SSH_KEY_PATH": "/Users/yourname/.ssh/id_rsa",
"HATCHBOX_APP_NAME": "myapp",
"// Optional - security settings": "",
"READONLY": "false",
"ALLOW_DEPLOYS": "true"
}
}
}
}
getEnvVarsGet all environment variables from the Hatchbox server via SSH.
Requirements: WEB_SERVER_IP_ADDRESS must be configured.
Parameters: None
Example:
"Show me all environment variables"
getEnvVarGet a specific environment variable from the Hatchbox server via SSH.
Requirements: WEB_SERVER_IP_ADDRESS must be configured.
Parameters:
name (string, required): The name of the environment variable to retrieveExample:
{
"name": "RAILS_ENV"
}
setEnvVarSet or update an environment variable.
Requirements: READONLY must be set to false.
Parameters:
name (string, required): The environment variable namevalue (string, required): The environment variable valueExample:
{
"name": "DATABASE_URL",
"value": "postgres://user:pass@host:5432/dbname"
}
deleteEnvVarsDelete one or more environment variables.
Requirements: READONLY must be set to false.
Parameters:
names (array of strings, required): Array of environment variable names to deleteExample:
{
"names": ["OLD_VAR", "UNUSED_VAR"]
}
triggerDeployTrigger a new deployment for your application.
Requirements: ALLOW_DEPLOYS must be set to true (default).
Parameters:
sha (string, optional): Specific commit SHA to deploy (latest if not provided)Example:
{
"sha": "abc123def456"
}
checkDeployCheck the status of a deployment.
Requirements: ALLOW_DEPLOYS must be set to true (default).
Parameters:
activityId (string, required): The deployment activity ID returned from triggerDeployExample:
{
"activityId": "12345"
}
Here are some example queries you can use with Claude:
View all environment variables: "Show me all environment variables"
Get a specific variable: "What is the value of RAILS_ENV?"
Set an environment variable: "Set the RAILS_ENV to production"
Delete environment variables: "Delete the OLD_VAR and UNUSED_VAR environment variables"
Deploy the latest code: "Deploy the latest commit to Hatchbox"
Deploy a specific commit: "Deploy commit abc123def456 to Hatchbox"
Check deployment status: "Check the status of deployment activity 12345"
READONLY=false, ALLOW_DEPLOYS=trueREADONLY=false, ALLOW_DEPLOYS=trueREADONLY=true, ALLOW_DEPLOYS=false (recommended)To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "hatchbox" '{"command":"npx","args":["-y","hatchbox-mcp-server"],"env":{"HATCHBOX_API_KEY":"your-api-key-here","HATCHBOX_ACCOUNT_ID":"1852","HATCHBOX_APP_ID":"8540","HATCHBOX_DEPLOY_KEY":"your-deploy-key-here","WEB_SERVER_IP_ADDRESS":"165.232.133.75","SSH_KEY_PATH":"/Users/yourname/.ssh/id_rsa","HATCHBOX_APP_NAME":"myapp","READONLY":"false","ALLOW_DEPLOYS":"true"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:
{
"mcpServers": {
"hatchbox": {
"command": "npx",
"args": [
"-y",
"hatchbox-mcp-server"
],
"env": {
"HATCHBOX_API_KEY": "your-api-key-here",
"HATCHBOX_ACCOUNT_ID": "1852",
"HATCHBOX_APP_ID": "8540",
"HATCHBOX_DEPLOY_KEY": "your-deploy-key-here",
"WEB_SERVER_IP_ADDRESS": "165.232.133.75",
"SSH_KEY_PATH": "/Users/yourname/.ssh/id_rsa",
"HATCHBOX_APP_NAME": "myapp",
"READONLY": "false",
"ALLOW_DEPLOYS": "true"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.json2. Add this to your configuration file:
{
"mcpServers": {
"hatchbox": {
"command": "npx",
"args": [
"-y",
"hatchbox-mcp-server"
],
"env": {
"HATCHBOX_API_KEY": "your-api-key-here",
"HATCHBOX_ACCOUNT_ID": "1852",
"HATCHBOX_APP_ID": "8540",
"HATCHBOX_DEPLOY_KEY": "your-deploy-key-here",
"WEB_SERVER_IP_ADDRESS": "165.232.133.75",
"SSH_KEY_PATH": "/Users/yourname/.ssh/id_rsa",
"HATCHBOX_APP_NAME": "myapp",
"READONLY": "false",
"ALLOW_DEPLOYS": "true"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect