rad_init
Initialize a new Radicle repository by specifying its name, description, and visibility. Simplifies repository creation for collaborative coding through the Radicle + GitHub MCP Server.
Instructions
Initialize a new Radicle repository.
Args:
name: Name of the repository
description: Description of the repository
public: Whether the repository should be public (default: True)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | Yes | ||
public | No |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"public": {
"default": true,
"title": "Public",
"type": "boolean"
}
},
"required": [
"name"
],
"title": "rad_initArguments",
"type": "object"
}