azure-devops-mcp

by RyanCardin15
Verified

getPullRequestComments

Get comments on a pull request

Input Schema

NameRequiredDescriptionDefault
pullRequestIdYesID of the pull request
repositoryIdYesID of the repository
skipNoNumber of comments to skip
threadIdNoID of a specific thread
topNoMaximum number of comments to return

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "pullRequestId": { "description": "ID of the pull request", "type": "number" }, "repositoryId": { "description": "ID of the repository", "type": "string" }, "skip": { "description": "Number of comments to skip", "type": "number" }, "threadId": { "description": "ID of a specific thread", "type": "number" }, "top": { "description": "Maximum number of comments to return", "type": "number" } }, "required": [ "repositoryId", "pullRequestId" ], "type": "object" }

You must be authenticated.

Other Tools