get_crew_status
Retrieve the current status of a specific crew task by providing the crew ID, enabling real-time monitoring of CrewAI workflows initiated through Claude Desktop.
Instructions
Get the status of a crew task
Args:
crew_id: The ID of the crew task to check
Returns:
Dictionary containing the crew task status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
crew_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"crew_id": {
"title": "Crew Id",
"type": "string"
}
},
"required": [
"crew_id"
],
"title": "get_crew_statusArguments",
"type": "object"
}