Skip to content

manage_projects

List and get Jira project details and statuses.

ActionDescriptionRequired ParamsOptional Params
listList all projectsstart_at, max_results
getGet project detailsproject_key
list_statusesList statuses by issue typeproject_key
ParameterTypeDescription
actionstringRequired. list, get, or list_statuses
project_keystringProject key or ID (for get, list_statuses)
start_atintPagination start index (for list)
max_resultsintMaximum results to return (for list)
{
"action": "list"
}

Response:

{
"total": 3,
"projects": [
{
"key": "PROJ",
"name": "My Project",
"project_type": "software",
"lead": "Jane Doe"
}
]
}
{
"action": "get",
"project_key": "PROJ"
}

Response:

{
"key": "PROJ",
"name": "My Project",
"description": "Main product development",
"project_type": "software",
"lead": "Jane Doe",
"issue_types": ["Story", "Bug", "Task", "Epic", "Sub-task"]
}
{
"action": "list_statuses",
"project_key": "PROJ"
}

Response:

{
"total": 2,
"issue_types": [
{
"issue_type": "Story",
"statuses": [
{ "id": "1", "name": "To Do", "category": "To Do" },
{ "id": "2", "name": "In Progress", "category": "In Progress" },
{ "id": "3", "name": "Done", "category": "Done" }
]
}
]
}