delete_team
Remove an existing team from TeamRetro MCP Server by specifying the team ID. Streamline team management and maintain accurate organizational structures.
Instructions
Delete an existing team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
teamId | Yes | string |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"teamId": {
"description": "string",
"pattern": "^[a-zA-Z0-9]{22}$",
"type": "string"
}
},
"required": [
"teamId"
],
"type": "object"
}