team_create
Create a new team for the logged-in user by specifying a team name using the input schema, simplifying team management on the Buu AI MCP Server.
Instructions
[PRIVATE] Create a new team for the logged-in user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the new team |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the new team",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}