Skip to main content
Deploy a release to an environment

Tool details

FieldValue
Namecreate_deployment
GroupDeployments

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "release_id": {
      "type": "string",
      "format": "uuid",
      "description": "Release ID to deploy"
    },
    "environment": {
      "type": "string",
      "description": "Environment name (e.g., production, preview) or ID"
    }
  },
  "required": [
    "project_reference",
    "release_id",
    "environment"
  ],
  "additionalProperties": false,
  "description": "Input schema for the create_deployment tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the returned record."
    },
    "release_id": {
      "type": "string",
      "description": "Release identifier associated with this result."
    },
    "release_name": {
      "type": "string",
      "description": "The release name associated with this tool result."
    },
    "environment_id": {
      "type": "string",
      "description": "The environment id associated with this tool result."
    },
    "environment_name": {
      "type": "string",
      "description": "The environment name associated with this tool result."
    },
    "created_at": {
      "type": "string",
      "description": "Creation timestamp in ISO 8601 format."
    }
  },
  "required": [
    "id",
    "release_id",
    "release_name",
    "environment_id",
    "environment_name",
    "created_at"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the create_deployment tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}