create_task
ActiveTool of FavCRM
declared in 1.0.0
Create a task. Optionally link to a CRM account or assign to a team member.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"title"
],
"properties": {
"title": {
"type": "string",
"description": "Task title"
},
"status": {
"enum": [
"todo",
"in_progress",
"blocked",
"done"
],
"type": "string",
"description": "Status filter"
},
"dueDate": {
"type": "string",
"description": "ISO date (YYYY-MM-DD)"
},
"priority": {
"enum": [
"low",
"medium",
"high",
"urgent"
],
"type": "string",
"description": "Priority"
},
"accountId": {
"type": "string",
"description": "Linked CRM account"
},
"assigneeId": {
"type": "string",
"description": "company_members.id"
},
"description": {
"type": "string",
"description": "Description"
}
}
}Parent server
FavCRM
https://github.com/favcrm/mcp
1/7 registries