Skip to main content
Glama
adepanges

TeamRetro MCP Server

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

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

Implementation Reference

  • The main handler function that performs the actual team creation by posting data to the /v1/teams API endpoint.
    async createTeam(data: {
      name: string;
      tags?: string[];
      members?: TeamMember[];
    }): Promise<SingleApiResponse<Team>> {
      return this.post<SingleApiResponse<Team>>("/v1/teams", data);
    }
  • Local registration of the 'create_team' tool within the teamTools object, including inline schema, description, and wrapper handler.
    create_team: {
      schema: teamSchema.pick({
        name: true,
        tags: true,
        members: true,
      }),
      description: "Create a new team with a required name, and optional tags and members",
      handler: async (args: {
        name: string;
        tags?: string[];
        members?: TeamMember[];
      }) => createToolResponse(teamsService.createTeam(args)),
    },
  • Input schema for the create_team tool using Zod pick from teamSchema.
    schema: teamSchema.pick({
      name: true,
      tags: true,
      members: true,
    }),
  • src/tools.ts:14-22 (registration)
    Global registration where teamTools (containing create_team) is spread into the main tools object.
      ...userTools,
      ...teamTools,
      ...teamMembersTools,
      ...actionTools,
      ...retrospectiveTools,
      ...agreementTools,
      ...healthModelTools,
      ...healthCheckTools,
    };
  • src/tools.ts:36-38 (registration)
    Registers the handler for each tool (including create_team) with error handling wrapper.
    Object.entries(tools).forEach(([name, tool]) => {
      toolHandlers[name] = (args: any) => toolErrorHandlers(tool.handler, args);
    });
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It states the tool creates a team but doesn't disclose behavioral traits like required permissions, whether it's idempotent, what happens on duplicate team names, rate limits, or what the return value contains. For a creation tool with zero annotation coverage, this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste. It's front-loaded with the core purpose ('Create a new team') and adds only necessary qualifiers ('with optional members and tags'). Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (a creation tool with 3 parameters), lack of annotations, and no output schema, the description is incomplete. It doesn't cover behavioral aspects like permissions, idempotency, or error handling, and doesn't explain what the tool returns. For a tool that creates resources, this leaves critical gaps for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all parameters (name, members, tags) with their types, constraints, and descriptions. The description adds minimal value by noting that members and tags are optional, but this is already implied by the schema (only 'name' is required). Baseline 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Create') and resource ('a new team'), and mentions optional features ('with optional members and tags'). It doesn't explicitly differentiate from siblings like 'add_user' or 'update_team', but the verb 'Create' is specific enough to indicate this is for initial team creation rather than modification.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. With siblings like 'add_user' (for adding members to existing teams), 'update_team' (for modifying teams), and 'list_teams' (for viewing), the description doesn't help an agent choose between these tools or indicate prerequisites (e.g., whether you need admin permissions).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/adepanges/teamretro-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server