get_changelog
Retrieve package changelog and release notes to understand version updates, new features, and breaking changes across npm and PyPI registries.
Instructions
Get changelog and release notes for a package.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| package | Yes | ||
| reasoning | Yes | ||
| registry | No | auto | |
| max_releases | No |
Input Schema (JSON Schema)
{
"properties": {
"max_releases": {
"default": 5,
"title": "Max Releases",
"type": "integer"
},
"package": {
"title": "Package",
"type": "string"
},
"reasoning": {
"title": "Reasoning",
"type": "string"
},
"registry": {
"default": "auto",
"enum": [
"npm",
"pypi",
"auto"
],
"title": "Registry",
"type": "string"
}
},
"required": [
"package",
"reasoning"
],
"type": "object"
}