update_team
Modify team details such as name and tags using a unique team ID for accurate updates within the TeamRetro MCP Server's retrospective management system.
Instructions
Update an existing team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | string | |
tags | No | string[] | |
teamId | Yes | string |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "string",
"maxLength": 64,
"minLength": 1,
"type": "string"
},
"tags": {
"description": "string[]",
"items": {
"type": "string"
},
"maxItems": 16,
"minItems": 0,
"type": "array"
},
"teamId": {
"description": "string",
"pattern": "^[a-zA-Z0-9]{22}$",
"type": "string"
}
},
"required": [
"teamId",
"name"
],
"type": "object"
}