aptly_publish_repo
Publish Debian package repositories for apt access by specifying repository name, distribution, and optional prefix. Simplify repository availability management on Aptly MCP Server.
Instructions
Publish a repository to make it available for apt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
distribution | Yes | Distribution name for the publication (e.g., stable, testing, unstable) | |
prefix | No | Optional prefix for the publication endpoint | |
repoName | Yes | Name of the repository to publish |
Input Schema (JSON Schema)
{
"properties": {
"distribution": {
"description": "Distribution name for the publication (e.g., stable, testing, unstable)",
"type": "string"
},
"prefix": {
"description": "Optional prefix for the publication endpoint",
"type": "string"
},
"repoName": {
"description": "Name of the repository to publish",
"type": "string"
}
},
"required": [
"repoName",
"distribution"
],
"type": "object"
}