Model Context Protocol (MCP) server for DeployHQ API integration
Model Context Protocol (MCP) server for DeployHQ API integration. That is what the deployhq mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.
A Model Context Protocol (MCP) server for DeployHQ that enables AI assistants like Claude Desktop and Claude Code to interact with your DeployHQ deployments.
Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.
The server publishes 14 tools. What each one is for:
list_projects — List all projectsget_project — Get project detailslist_servers — List project serverslist_deployments — List deployments with paginationget_deployment — Get deployment detailsget_deployment_log — Get deployment log outputcreate_deployment — Create new deploymentlist_ssh_keys — List all SSH public keyscreate_ssh_key — Create a new SSH key pairlist_global_environment_variables — List all global environment variablescreate_global_environment_variable — Create a global environment variableupdate_global_environment_variable — Update a global environment variableConfiguration is passed through the environment: DEPLOYHQ_EMAIL, DEPLOYHQ_API_KEY, DEPLOYHQ_ACCOUNT, LOG_LEVEL, DEPLOYHQ_READ_ONLY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Deployhq's toolset — list_projects, get_project, list_servers and 11 more — is a fair guide to whether it matches your workflow. It is maintained by deployhq; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| list_projects | List all projects |
| get_project | Get project details |
| list_servers | List project servers |
| list_deployments | List deployments with pagination |
| get_deployment | Get deployment details |
| get_deployment_log | Get deployment log output |
| create_deployment | Create new deployment |
| list_ssh_keys | List all SSH public keys |
| create_ssh_key | Create a new SSH key pair |
| list_global_environment_variables | List all global environment variables |
| create_global_environment_variable | Create a global environment variable |
| update_global_environment_variable | Update a global environment variable |
| delete_global_environment_variable | Delete a global environment variable |
| list_global_config_files | List all global config file templates |
{
"mcpServers": {
"deployhq": {
"command": "npx",
"args": ["-y", "deployhq-mcp-server"],
"env": {
"DEPLOYHQ_EMAIL": "your-email@example.com",
"DEPLOYHQ_API_KEY": "your-password",
"DEPLOYHQ_ACCOUNT": "your-account-name",
"LOG_LEVEL": "DEBUG"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| DEPLOYHQ_EMAIL | Configuration value read at startup. | Optional |
| DEPLOYHQ_API_KEY | Credential the server authenticates with. | Yes |
| DEPLOYHQ_ACCOUNT | Configuration value read at startup. | Optional |
| LOG_LEVEL | Configuration value read at startup. | Optional |
| DEPLOYHQ_READ_ONLY | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.