DeployHQ MCP Server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"deployhq-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for DeployHQ that enables AI assistants like Claude Desktop and Claude Code to interact with your DeployHQ deployments.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
MCP server for Spanning Cloud Backup — M365/GWS/Salesforce backups, restores, audit.
AI agent control of 3D printers — 432 tools for OctoPrint, Moonraker, Bambu, Prusa, Elegoo
MCP server for Kaseya Autotask PSA — companies, tickets, projects, time entries, and more.
On-chain provenance lookup for AnchorRegistry. Resolve AR-IDs, hashes, and full trees. Authless.
MCP Security Weekly
Get CVE alerts and security updates for Deployhq Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for DeployHQ that enables AI assistants like Claude Desktop and Claude Code to interact with your DeployHQ deployments.
npx - no installation requiredThe MCP server provides 18 tools for AI assistants:
| Tool | Description | Parameters |
|---|---|---|
list_projects | List all projects | None |
get_project | Get project details | permalink |
list_servers | List project servers | project |
list_deployments | List deployments with pagination | project, page?, server_uuid? |
get_deployment | Get deployment details | project, uuid |
get_deployment_log | Get deployment log output | project, uuid |
create_deployment | Create new deployment | project, parent_identifier, start_revision, end_revision, + optional params |
list_ssh_keys | List all SSH public keys | None |
create_ssh_key | Create a new SSH key pair | title, key_type? |
list_global_environment_variables | List all global environment variables | None |
create_global_environment_variable | Create a global environment variable | name, value, locked?, build_pipeline? |
update_global_environment_variable | Update a global environment variable | id, name?, value?, locked?, build_pipeline? |
delete_global_environment_variable | Delete a global environment variable | id |
list_global_config_files | List all global config file templates | None |
get_global_config_file | Get a global config file with body | id |
create_global_config_file | Create a global config file template | path, body, description?, build? |
update_global_config_file | Update a global config file template | id, path?, body?, description?, build? |
delete_global_config_file | Delete a global config file template | id |
list_projectsList all projects in your DeployHQ account.
Returns: Array of projects with repository information and deployment status.
get_projectGet detailed information about a specific project.
Parameters:
permalink (string): Project permalink or identifierlist_serversList all servers configured for a project.
Parameters:
project (string): Project permalinklist_deploymentsList deployments for a project with pagination support.
Parameters:
project (string): Project permalinkpage (number, optional): Page number for paginationserver_uuid (string, optional): Filter by server UUIDget_deploymentGet detailed information about a specific deployment.
Parameters:
project (string): Project permalinkuuid (string): Deployment UUIDget_deployment_logGet the deployment log for a specific deployment. Useful for debugging failed deployments.
Parameters:
project (string): Project permalinkuuid (string): Deployment UUIDReturns: Complete deployment log as text
create_deploymentCreate a new deployment for a project.
Parameters:
project (string): Project permalinkparent_identifier (string): Server or server group UUIDstart_revision (string): Starting commit hashend_revision (string): Ending commit hashbranch (string, optional): Branch to deploy frommode (string, optional): "queue" or "preview"copy_config_files (boolean, optional): Copy config filesrun_build_commands (boolean, optional): Run build command