Packages
Generated automatically at build time from the madtea repository - do not edit here. Source: docs/reference/packages.md.
CLI Commands
madtea packages delete
Delete a package version
madtea packages files
List package files
madtea packages get
Get package version details
madtea packages latest
Get latest package version
madtea packages link
Link package to a repository
madtea packages list
List packages for an owner
| Flag | Type | Default | Description |
|---|---|---|---|
--limit | int | 0 | Maximum number of items to return (0 = server default) |
--page | int | 0 | Page number for pagination (0 = first page) |
--type | string | Filter by package type (go, npm, container, etc.) |
madtea packages unlink
Unlink package from repository
madtea packages versions
List package versions
MCP Tools
madt_packages
Manage packages in the package registry (requires madt_enable(domains=[“packages”])): list, get, delete, list files/versions, link/unlink to a repository, get latest.
Output schema: declared
One tool, action-dispatched. Set action to one of:
action="delete"
Delete a specific package version.
Required: owner, type, name, version
action="files"
List files in a package version. Formatted output abbreviates checksums; set raw_json=true for full md5/sha1/sha256/sha512 digests.
Required: owner, type, name, version
action="get"
Get details for a specific package version.
Required: owner, type, name, version
action="latest"
Get the latest version of a package.
Required: owner, type, name
action="link"
Link a package to a repository.
Required: owner, type, name, repo_name
action="list"
List packages for a user or organization. Filter by type.
Required: owner
Optional: type, limit, page
action="unlink"
Unlink a package from its repository.
Required: owner, type, name
action="versions"
List all versions of a package.
Required: owner, type, name
Canonical source: docs/reference/packages.md in the madtea repo.