Development
Validate Git branch names according to Git naming conventions
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/git-branch-validator' \
-H 'Content-Type: application/json' \
-d '{"branchName":"Enter Git branch name to validate...","allowCustomPrefixes":true,"enforceConvention":false,"reservedNames":"HEAD,main,master","maxLength":255,"allowedPrefixes":"feature/,bugfix/,hotfix/,release/,develop/"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/git-branch-validator| Name | Type | Required | Description |
|---|---|---|---|
| branchName | text | Yes | — |
| allowCustomPrefixes | checkbox | No | Allow branch names without standard prefixes |
| enforceConvention | checkbox | No | Require branch names to follow naming conventions |
| reservedNames | text | No | Branch names that are reserved (comma-separated) |
| maxLength | number | No |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-git-branch-validator": {
"name": "git-branch-validator",
"description": "Validate Git branch names according to Git naming conventions",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=git-branch-validator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "git-branch-validator",
"arguments": {
"branchName": "Enter Git branch name to validate...",
"allowCustomPrefixes": true,
"enforceConvention": false,
"reservedNames": "HEAD,main,master",
"maxLength": 255,
"allowedPrefixes": "feature/,bugfix/,hotfix/,release/,develop/"
}
}
}Questions or issues? Contact [email protected]
| Maximum length for branch names (filesystem compatibility) |
| allowedPrefixes | text | No | Valid branch name prefixes (comma-separated, end with /) |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}