aptly_get_mirror
Retrieve detailed information about a specific Debian package repository mirror using its name on the Aptly MCP Server. Essential for managing and synchronizing repositories efficiently.
Instructions
Get detailed information about a specific mirror
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the mirror to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the mirror to retrieve",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}