get_project
Retrieve detailed information about a specific project in Azure DevOps using the project ID or name, enabling streamlined access to project data through the MCP server.
Instructions
Get details of a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | The ID or name of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"description": "The ID or name of the project",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}