Skip to main content
Glama

TeamRetro MCP Server

tools.ts1.05 kB
import { HealthModel, healthModelSchema } from 'src/schemas/HealthModel.js'; import { paginationSchema } from 'src/schemas/generic.js'; import { createToolResponse } from 'src/utils/tools.js'; import { healthModelsService } from './service.js'; export const healthModelTools = { get_health_model: { schema: healthModelSchema.pick({ id: true }), description: "Retrieve a single health model by its unique identifier. This will return the health model's details including its name, dimensions, and creation date.", handler: async (args: { id: string }) => createToolResponse(healthModelsService.getHealthModel(args.id)), }, list_health_models: { schema: paginationSchema, description: "List health models from TeamRetro with pagination controls. This allows for retrieving a specific subset of health models based on the provided offset and limit parameters.", handler: async (args: { offset?: number; limit?: number; }) => createToolResponse(healthModelsService.listHealthModels(args)), }, };

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