jira_get_project_info
Retrieve comprehensive project details from Jira including components, versions, issue types, roles, and insights for better project management and analysis.
Instructions
Retrieves detailed information about a project (components, versions, issue types, roles, insights). More comprehensive than the basic project list.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expand | No | Additional project details to include (e.g., ["description", "lead", "issueTypes", "versions"]) | |
projectKey | Yes | Project key to get detailed information for |
Input Schema (JSON Schema)
{
"properties": {
"expand": {
"default": [],
"description": "Additional project details to include (e.g., [\"description\", \"lead\", \"issueTypes\", \"versions\"])",
"items": {
"type": "string"
},
"type": "array"
},
"projectKey": {
"description": "Project key to get detailed information for",
"type": "string"
}
},
"required": [
"projectKey"
],
"type": "object"
}