team_update
Modify team details such as name and wallet address on Buu AI MCP Server to ensure accurate and updated team information.
Instructions
[PRIVATE] Update team data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | New name for the team | |
wallet | No | New wallet address for the team |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "New name for the team",
"type": "string"
},
"wallet": {
"description": "New wallet address for the team",
"type": "string"
}
},
"type": "object"
}