Skip to main content

assistant_add

Family: Assistants — declare, launch, and track AI workers. See Assistants.

Register a coding assistant.

@mcp.tool()
def assistant_add(
dir: str,
name: str,
command: str,
description: str = '',
) -> str

Parameters

NameTypeRequired
dirstryes
namestryes
commandstryes
descriptionstrno (default '')

Returns str.

Call shape

Fill your values; omit optional parameters:

{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "assistant_add",
"arguments": {
"dir": "...",
"name": "...",
"command": "...",
"description": "..."
}
}
}