TeamRetro MCP Server

by adepanges
Verified

create_team

Create a new team with optional members and tags to manage team retrospectives effectively. Input a team name, add members with email and optional admin status, and assign tags for organization.

Instructions

Create a new team with optional members and tags

Input Schema

NameRequiredDescriptionDefault
membersNo{ email: string, name?: string, teamAdmin?: boolean }[]
nameYesstring
tagsNostring[]

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "members": { "description": "{ email: string, name?: string, teamAdmin?: boolean }[]", "items": { "additionalProperties": false, "properties": { "email": { "format": "email", "type": "string" }, "name": { "type": [ "string", "null" ] }, "teamAdmin": { "default": false, "type": "boolean" } }, "required": [ "email" ], "type": "object" }, "type": "array" }, "name": { "description": "string", "maxLength": 64, "minLength": 1, "type": "string" }, "tags": { "description": "string[]", "items": { "type": "string" }, "maxItems": 16, "minItems": 0, "type": "array" } }, "required": [ "name" ], "type": "object" }

You must be authenticated.

Other Tools from TeamRetro MCP Server

Related Tools

ID: v70elvd74e