servers

List deployments

List all deployments for a server, ordered by most recent first. Does not include deployment logs — fetch a specific deployment to see logs.

get/servers/{namespace}/{server}/deployments

Path parameters

namespacestring required
serverstring required

Response

List of deployments

idstring uuid required
statusstring required

Current deployment status: QUEUED, WORKING, SUCCESS, FAILURE, FAILURE_SCAN, AUTH_REQUIRED, CANCELLED, or INTERNAL_ERROR.

typestring required

Deployment type: hosted_shttp (Smithery-hosted), external_shttp (external URL), or stdio (local binary).

commitstring nullable

Git commit SHA that triggered this deployment. Present for repo and source-tracked deployments.

commitMessagestring nullable

Git commit message associated with this deployment.

branchstring nullable

Git branch this deployment was built from.

upstreamUrlstring nullable

Upstream MCP server URL. Present only for external deployments.

mcpUrlstring uri

The MCP endpoint URL for connecting to this server.

createdAtstring required

ISO 8601 timestamp of when the deployment was created.

updatedAtstring required

ISO 8601 timestamp of the last status change.

Changes