Get Migration Guide
gt_migrationRetrieve migration guides, breaking changes, and upgrade instructions for upgrading a library from one version to another.
Instructions
Fetch migration guides, breaking changes, and upgrade instructions for a library. Targets MIGRATION.md, UPGRADING.md, CHANGELOG, release notes, and upgrade docs.
Call gt_resolve_library first to get the libraryId.
Use this when the user asks HOW to upgrade their code from one version to another (step-by-step migration instructions, breaking changes, code transforms needed). For "what changed in version X" release notes without upgrade instructions, use gt_changelog instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| libraryId | Yes | Library ID from gt_resolve_library (e.g. 'vercel/next.js') | |
| fromVersion | No | Version migrating from, e.g. '14', 'v3.0' | |
| toVersion | No | Version migrating to, e.g. '15', 'v4.0' | |
| tokens | No | Max tokens to return |