checklist_add
Family: Checklists — the grading rubrics scoring consumes. See Checklists.
Add a checklist item.
@mcp.tool()
def checklist_add(
dir: str,
item_id: str,
name: str,
item_type: str = 'custom',
description: str = '',
command: str = '',
instructions: str = '',
) -> str
Parameters
| Name | Type | Required |
|---|---|---|
dir | str | yes |
item_id | str | yes |
name | str | yes |
item_type | str | no (default 'custom') |
description | str | no (default '') |
command | str | no (default '') |
instructions | str | no (default '') |
Returns str.
Call shape
Fill your values; omit optional parameters:
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "checklist_add",
"arguments": {
"dir": "...",
"item_id": "...",
"name": "...",
"item_type": "...",
"description": "...",
"command": "...",
"instructions": "..."
}
}
}