get_projects
Retrieve detailed information about all accessible projects in Azure DevOps, including names, IDs, descriptions, states, and visibility settings. Use filters to narrow results by project state or limit the number of projects returned.
Instructions
Retrieves all projects accessible to the authenticated user
in the Azure DevOps organization.
Use this tool when you need to:
- Get an overview of all available projects
- Find project IDs for use in other operations
- Check project states and visibility settings
- Locate specific projects by name
Args:
state_filter: Filter on team projects in a specific state
(e.g., "WellFormed", "Deleting")
top: Maximum number of projects to return
Returns:
Formatted string containing project information including names,
IDs, descriptions, states, and visibility settings, formatted as
markdown with each project clearly separated
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| state_filter | No | ||
| top | No |
Input Schema (JSON Schema)
{
"properties": {
"state_filter": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "State Filter"
},
"top": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Top"
}
},
"title": "get_projectsArguments",
"type": "object"
}