Skip to main content

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

NameTypeRequired
dirstryes
item_idstryes
namestryes
item_typestrno (default 'custom')
descriptionstrno (default '')
commandstrno (default '')
instructionsstrno (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": "..."
}
}
}