kickoff_crew
Initiate and manage CrewAI workflows by launching tasks with specific inputs, receiving a crew ID to track task progress using the Model Context Protocol server.
Instructions
Start a new crew task
Args:
inputs: Dictionary containing the query and other input parameters
Returns:
Dictionary containing the crew task response. The response will contain the crew id which needs to be returned to check the status of the crew.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputs | Yes |
Input Schema (JSON Schema)
{
"properties": {
"inputs": {
"title": "Inputs",
"type": "object"
}
},
"required": [
"inputs"
],
"title": "kickoff_crewArguments",
"type": "object"
}