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
| Name | Type | Required |
|---|---|---|
dir | str | yes |
name | str | yes |
command | str | yes |
description | str | no (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": "..."
}
}
}