Tool details
| Field | Value |
|---|---|
| Name | veryfront__create_branch |
| Group | Branches |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 255,
"pattern": "^[A-Za-z0-9._/][A-Za-z0-9._/-]*$",
"description": "Branch name (e.g., \"feature-new-header\"). Branch name may only contain letters, numbers, \".\", \"_\", \"/\" and \"-\", and cannot start with \"-\"."
},
"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#"
}
Output schema
output-schema.json
{
"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#"
}