Skip to main content
Glama
adepanges

TeamRetro MCP Server

detail_team

Retrieve detailed information about a specific team by its unique ID using the TeamRetro MCP Server for precise team retrospective management.

Instructions

Get a single team by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
teamIdYesstring

Implementation Reference

  • Primary definition and handler for the 'detail_team' tool. Includes input schema (requiring team ID), description, and async handler that invokes teamsService.getTeam to fetch team details.
    detail_team: {
      schema: teamSchema.pick({ id: true }),
      description: "Retrieve detailed information about a single team by its unique ID",
      handler: async (args: { id: string }) =>
        createToolResponse(teamsService.getTeam(args.id)),
    },
  • Supporting service method that executes the core logic: HTTP GET request to the /v1/teams/{id} API endpoint to retrieve detailed team information.
    async getTeam(teamId: string): Promise<SingleApiResponse<Team>> {
      return this.get<SingleApiResponse<Team>>(`/v1/teams/${teamId}`);
    }
  • src/tools.ts:13-22 (registration)
    Global registration of feature tools, including teamTools containing 'detail_team', by spreading into the main tools object for schema generation and handler mapping.
    const tools = {
      ...userTools,
      ...teamTools,
      ...teamMembersTools,
      ...actionTools,
      ...retrospectiveTools,
      ...agreementTools,
      ...healthModelTools,
      ...healthCheckTools,
    };
  • Input schema for detail_team tool: Zod schema picking only the 'id' field from teamSchema for validation.
    schema: teamSchema.pick({ id: true }),
  • src/tools.ts:15-15 (registration)
    Specific inclusion of teamTools (with detail_team) in the main tools registry.
    ...teamTools,

Tool Definition Quality

Score is being calculated. Check back soon.

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