rad_clone
Clone Radicle repositories by specifying the Repository ID (RID) and optional path. Ideal for managing peer-to-peer code collaboration across Radicle and GitHub via the MCP server.
Instructions
Clone a Radicle repository.
Args:
rid: Repository ID (RID) to clone
path: Optional path where to clone the repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No | ||
rid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Path"
},
"rid": {
"title": "Rid",
"type": "string"
}
},
"required": [
"rid"
],
"title": "rad_cloneArguments",
"type": "object"
}