get_project
Retrieve specific details of an Azure DevOps project by using its ID or name. This tool simplifies project information access for streamlined management and oversight.
Instructions
Get details of a specific Azure DevOps project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | No | ID (GUID) of the project | |
name | No | Name of the project |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "ID (GUID) of the project",
"type": "string"
},
"name": {
"description": "Name of the project",
"type": "string"
}
},
"required": [],
"type": "object"
}