download_release_asset
Download release asset files from GitLab projects using direct asset paths and tag names to retrieve specific files from tagged releases.
Instructions
Download a release asset file by direct asset path
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No | Project ID or URL-encoded path | |
| tag_name | Yes | The Git tag the release is associated with | |
| direct_asset_path | Yes | Path to the release asset file as specified when creating or updating its link |
Implementation Reference
- schemas.ts:2295-2300 (schema)Input schema definition for the 'download_release_asset' MCP tool, specifying parameters: project_id, tag_name, and direct_asset_path.export const DownloadReleaseAssetSchema = z.object({ project_id: z.coerce.string().describe("Project ID or URL-encoded path"), tag_name: z.string().describe("The Git tag the release is associated with"), direct_asset_path: z.string().describe("Path to the release asset file as specified when creating or updating its link"), });