Skip to main content
The Model Context Protocol (MCP) is the open standard that connects AI agents to external tools. The Hyze Cloud MCP server exposes read-only platform operations so you can ask your agent, in natural language, things like “list my apps” or “why did my deploy fail”.
The MCP server is read-only in the MVP. It operates with your API key and goes through the same permission rules as the public API — no extra resources, no direct access to databases or workers.

What the agent can do

  • apps_list — list the apps in your workspace (with search and pagination)
  • apps_get — app details: status, public URL, repository, latest commit
  • deployments_list — deploy history with status and error summary
  • apps_logs — recent runtime logs (size-capped)
  • domains_list — app domains with verification and SSL status
Write operations (create app, deploy, restart, delete) are not available in the MCP yet.

Requirement: an API key

The MCP uses the same authentication as the public API. If you don’t have a key yet, follow the API key guide: Settings → Developer → Create Key in the Dashboard. Store the key somewhere safe (password manager or environment variable). It is bound to your workspace and defines what the agent can see.

Set up in Claude Code

1
Run in your terminal:
2
Verify the connection:
Configuration syntax can vary between versions. If the command fails, check your client version — we recommend the latest one.

Set up in other clients

Any MCP client with “Streamable HTTP” support works with:
  • URL: https://mcp.hyzecloud.com/mcp
  • Header: Authorization: Bearer hyze_your_key
In clients that use a JSON config file:

Usage examples

Once connected, try asking your agent:
  • “List my Hyze apps”
  • “What’s the status of app X and its public URL?”
  • “Why did the last deploy of app X fail?”
  • “Show me the recent logs of app X”

Revoking access

To disconnect an agent, revoke the API key in the dashboard (Settings → Developer). The agent loses access immediately, no client reconfiguration needed.
Use a dedicated key for the agent. That way you can revoke it without affecting your other integrations.
Last modified on August 31, 2026