get_sprints
Retrieve active or planned sprints for a specific part ID to manage and track issue progress within DevRev MCP Server efficiently.
Instructions
Get active or planned sprints for a given part ID. Use this to get the sprints for an issue based on its part.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ancestor_part_id | Yes | The ID of the part to get the sprints for. | |
state | No | The state of the sprints to get. When the state is not provided in query, the tool will get the active sprints. |
Input Schema (JSON Schema)
{
"properties": {
"ancestor_part_id": {
"description": "The ID of the part to get the sprints for.",
"type": "string"
},
"state": {
"description": "The state of the sprints to get. When the state is not provided in query, the tool will get the active sprints.",
"enum": [
"active",
"planned"
],
"type": "string"
}
},
"required": [
"ancestor_part_id"
],
"type": "object"
}