backup_list
List available backups by specifying a provider and optional repository, enabling easy management and retrieval of stored data on GitMCP.
Instructions
List backups
Input Schema
Name | Required | Description | Default |
---|---|---|---|
provider | Yes | Provider name | |
repo | No | Repository name |
Input Schema (JSON Schema)
{
"properties": {
"provider": {
"description": "Provider name",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"provider"
],
"type": "object"
}