azure-devops-mcp

by RyanCardin15
Verified

publishPackage

Publish a package to a feed

Input Schema

NameRequiredDescriptionDefault
feedIdYesID of the feed to publish to
packagePathYesPath to the package file
packageTypeYesType of package
packageVersionNoVersion of the package

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "feedId": { "description": "ID of the feed to publish to", "type": "string" }, "packagePath": { "description": "Path to the package file", "type": "string" }, "packageType": { "description": "Type of package", "enum": [ "npm", "nuget", "maven", "python", "universal" ], "type": "string" }, "packageVersion": { "description": "Version of the package", "type": "string" } }, "required": [ "feedId", "packageType", "packagePath" ], "type": "object" }

You must be authenticated.

Other Tools