aptly_delete_repo
Delete a local Debian package repository from the Aptly MCP Server optionally enforcing deletion even if published or containing snapshots.
Instructions
Delete a local repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | Force deletion even if repository is published or has snapshots | |
name | Yes | Name of the repository to delete |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"default": false,
"description": "Force deletion even if repository is published or has snapshots",
"type": "boolean"
},
"name": {
"description": "Name of the repository to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}