Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Create a new branch for a project. Branches allow you to work on features in isolation before merging back to main.
create_branch
{ "type": "object", "properties": { "project_reference": { "type": "string", "description": "Project ID or slug" }, "name": { "type": "string", "description": "Branch name (e.g., \"feature-new-header\")" }, "base_branch_id": { "type": "string", "format": "uuid", "description": "Base branch ID to create from (null for main branch)" } }, "required": [ "name" ], "additionalProperties": false, "description": "Input schema for the create_branch tool.", "$schema": "http://json-schema.org/draft-07/schema#" }
{ "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the record." }, "name": { "type": "string", "description": "Human-readable name for the record." }, "project_id": { "type": "string", "description": "Project identifier associated with the record." } }, "required": [ "id", "name", "project_id" ], "additionalProperties": false, "description": "Structured create branch output schema for MCP tools.", "$schema": "http://json-schema.org/draft-07/schema#" }