people_insertAttributeCategory
WRITEInsert attribute category.
Parameters
namestringrequiredpublicbooleanrequiredemojistringoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "people_insertAttributeCategory",
"arguments": {
"name": "string",
"public": true
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"emoji": {
"type": "string"
},
"public": {
"type": "boolean"
}
},
"required": [
"name",
"public"
]
}