Azure DevOps MCP Server

get_repository_details

Retrieve comprehensive repository details from Azure DevOps, including branch statistics and refs, by specifying project and repository IDs. Enable or disable statistical data and ref inclusion as needed.

Instructions

Get detailed information about a repository including statistics and refs

Input Schema

NameRequiredDescriptionDefault
branchNameNoName of specific branch to get statistics for (if includeStatistics is true)
includeRefsNoWhether to include repository refs
includeStatisticsNoWhether to include branch statistics
projectIdYesThe ID or name of the project
refFilterNoOptional filter for refs (e.g., "heads/" or "tags/")
repositoryIdYesThe ID or name of the repository

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "branchName": { "description": "Name of specific branch to get statistics for (if includeStatistics is true)", "type": "string" }, "includeRefs": { "default": false, "description": "Whether to include repository refs", "type": "boolean" }, "includeStatistics": { "default": false, "description": "Whether to include branch statistics", "type": "boolean" }, "projectId": { "description": "The ID or name of the project", "type": "string" }, "refFilter": { "description": "Optional filter for refs (e.g., \"heads/\" or \"tags/\")", "type": "string" }, "repositoryId": { "description": "The ID or name of the repository", "type": "string" } }, "required": [ "projectId", "repositoryId" ], "type": "object" }

You must be authenticated.

Other Tools from Azure DevOps MCP Server

Related Tools

ID: vbqbnnzcdd