MCP Connector

Integrate TeamRetro with MCP Tools

An unofficial MCP server for TeamRetro - manage teams, retrospectives, health checks, and actions, plus CSV activity reports.

Works with teamretro

91
Spark score
out of 100
Updated last month
Version 0.12.5
Models
universal

Add to Favorites

Why it matters

Seamlessly integrate your TeamRetro platform with AI clients via standardized MCP tools. Manage users, teams, and retrospectives programmatically.

Outcomes

What it gets done

01

Manage TeamRetro users (list, add, update, delete)

02

Manage TeamRetro teams (list, detail, update, create, delete)

03

Manage team members (list, get, update, remove, add)

04

Connect TeamRetro data to AI agents through MCP

Install

Add it to your toolbox

Run in your project directory:

curl -fsSL https://spark.entire.vc/get/vb-teamretro | bash

Capabilities

Tools your agent gets

list_users

Retrieve a list of users with pagination using offset and limit parameters.

add_user

Add a new user or update information for an existing user by email address.

update_user

Update data for an existing user such as name and email address.

delete_user

Delete a user by their email address.

get_user

Retrieve detailed information about a single user by their email address.

list_teams

Retrieve a list of teams with filtering by tags and ID, and pagination support.

detail_team

Retrieve detailed information about a single team by its unique ID.

update_team

Update data for an existing team such as name and associated tags.

+7 tools

Overview

TeamRetro MCP Server

This unofficial MCP server exposes 40 tools for TeamRetro: managing users, teams, team members, actions, agreements, health checks, and retrospectives, plus seven CSV report generators for activity and team health. Use it to automate or analyze TeamRetro data from an AI client with a valid API key. It is community-built, not officially endorsed by TeamRetro, though it uses TeamRetro's documented public API directly.

What it does

An unofficial MCP server bridging AI clients to TeamRetro's official public API, exposing 40 tools across nine areas while preserving original API responses unmodified. Users (5): list, add, update, delete, and get by email. Teams (5): list (filterable by tags and IDs, paginated), detail, update, create, and delete. Team Members (5): list, get, update, remove, and add per team, keyed by email. Actions (5): list (filterable by team tags/IDs), create with team ID/title/due date/completion status/assignee, get, update, and delete. Agreements (5): list, create, get, update, and delete, each tied to a team. Health Checks (3): list, get, and delete, filterable by health model or team tags/IDs. Health Models (2): list and get. Retrospectives (3): list (filterable by team tags/IDs), get, and delete. Reports (7): seven CSV-returning tools covering team activity, team actions activity (open, completed, and overdue counts grouped by age range), retrospective activity (participation rate, idea/comment/action/agreement counts), health check activity, team health latest and historical scores per health model, and a users report with account roles, team memberships, and activity statistics.

When to use - and when NOT to

Use it to automate or analyze TeamRetro data - team and user management, retrospectives, health checks, agreements, actions, or reporting - from an AI client. This is an unofficial, community-built server, not developed or endorsed by TeamRetro, though it connects directly to TeamRetro's documented public API and preserves responses unmodified; any change to TeamRetro's own API may affect this server's functionality. It requires a valid TeamRetro API key.

Inputs and outputs

Most list and detail tools accept offset and limit pagination plus filters such as team tags, team IDs, health model IDs, or date ranges; create and update tools take the relevant entity fields - team name, tags, and members; action title, due date, and assignee; agreement title and team; and so on. Outputs are either structured TeamRetro entity data or, for the seven report tools, raw CSV data with statistics like participation rates, action counts grouped by age, and health-dimension scores.

Integrations

{
  "mcpServers": {
    "teamretro-mcp-server": {
      "command": "npx",
      "args": ["-y", "teamretro-mcp-server"],
      "env": { "TEAMRETRO_AUTH_TYPE": "apiKey", "TEAMRETRO_API_KEY": "your-api-key" }
    }
  }
}

Connects to TeamRetro's API at a configurable TEAMRETRO_BASE_URL, defaulting to https://api.teamretro.com. It's also installable via Smithery, or built from source with pnpm install and pnpm run build, including a pnpm run inspector mode for local testing against a .env configuration.

Who it's for

Teams and ops or people-analytics practitioners who want to manage TeamRetro teams, actions, and retrospectives, or pull CSV reports on participation and team health, directly through an AI assistant instead of TeamRetro's web UI.

Source README

TeamRetro MCP Server

Smithery Badge

MseeP.ai Security Assessment Badge

A Model Context Protocol (MCP) server that provides AI-powered integration with TeamRetro's platform. This server acts as a bridge between AI clients and TeamRetro's official API, enabling seamless interaction with team management, retrospectives, health checks, and other TeamRetro features through standardized MCP tools.

Key features:

  • Complete TeamRetro API coverage with 20+ tools for managing teams, users, actions, and more
  • Simplified AI client integration through standardized MCP interfaces
  • Built-in pagination and filtering support for efficient data handling
  • Secure API authentication handling and environment configuration
  • Comprehensive documentation and easy setup options

Whether you're building AI-powered team analytics, automated retrospective management, or integrating TeamRetro into your AI workflow, this MCP server provides the foundation you need.

Important Notes

Unofficial MCP Server

This MCP server is an unofficial community-developed interface to TeamRetro's services. While not developed or endorsed by TeamRetro, it provides standardized access to their platform.

Official API Integration

The server connects directly to TeamRetro's official public API:

  • Uses documented endpoints from TeamRetro's API specifications
  • Maintains full API compliance and version tracking
  • Implements all required authentication methods
  • Preserves original API responses without modification

API Documentation Source

All API endpoints and functionality are based on TeamRetro's official documentation:

How to Use

NPX (Recommended, Easy Setup)

{
  "mcpServers": {
    "teamretro-mcp-server": {
      "command": "npx",
      "args": ["-y", "teamretro-mcp-server"],
      "env": {
        "TEAMRETRO_AUTH_TYPE": "apiKey",
        "TEAMRETRO_API_KEY": "your-api-key"
      }
    }
  }
}

Installing via Smithery

To install TeamRetro MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @adepanges/teamretro-mcp-server --client claude

From Source Code

  1. Clone the repository, install dependencies, and build the project:
git clone https://github.com/adepanges/teamretro-mcp-server.git
cd teamretro-mcp-server
pnpm install
pnpm run build
Running in AI Client
  1. Configure the AI client with the following settings:
{
  "mcpServers": {
    "teamretro-mcp-server": {
      "command": "node",
      "args": ["/path/to/teamretro-mcp-server/dist/index.js"],
      "env": {
        "TEAMRETRO_AUTH_TYPE": "apiKey",
        "TEAMRETRO_API_KEY": "your-api-key"
      }
    }
  }
}
Running with Inspector
  1. Configure the environment variables by copying .env.example to .env and modifying it according to your needs.
  2. Run the server with inspector:
pnpm run inspector

Environment Variables Examples

Base URL

The base URL for the TeamRetro API can be set using the TEAMRETRO_BASE_URL environment variable. By default, it is set to https://api.teamretro.com.

{
  "env": {
    "TEAMRETRO_BASE_URL": "https://api.teamretro.com"
  }
}
API Key Authentication
{
  "env": {
    "TEAMRETRO_AUTH_TYPE": "apiKey",
    "TEAMRETRO_API_KEY": "your-api-key"
  }
}

Available Tools

The server provides the following tools:

Users

  • list_users: List users with pagination using offset and limit parameters to control the number of results returned
  • add_user: Add a new user or update an existing user's information by their email address, specifying optional name and emailAddress
  • update_user: Update an existing user's details, such as their name and emailAddress, by providing their current email
  • delete_user: Delete a user by their email address
  • get_user: Retrieve detailed information about a single user by their email address

Teams

  • list_teams: List teams from TeamRetro with filtering by tags and IDs, and pagination using offset and limit parameters
  • detail_team: Retrieve detailed information about a single team by its unique ID
  • update_team: Update an existing team's details, such as its name and associated tags, by providing the team's ID
  • create_team: Create a new team with a required name, and optional tags and members
  • delete_team: Delete an existing team by its ID

Team Members

  • list_team_members: Retrieve a list of team members for a specified team ID with pagination controls for offset and limit
  • get_team_member: Fetch a team member by their email address within a specified team
  • update_team_member: Update a team member's details, such as their name or team admin status, by their email address within a specified team
  • remove_team_member: Remove a team member from a team by their email address
  • add_team_member: Add a new team member to a team by their email address, with optional specification of team admin status

Actions

  • list_actions: Retrieve a list of actions from TeamRetro with optional filtering by team tags and team IDs, and pagination controls for offset and limit
  • create_action: Create a new action in TeamRetro with required details such as team ID, title, due date, completion status, and assigned user
  • get_action: Fetch a single action by its unique ID from TeamRetro
  • update_action: Update an existing action in TeamRetro with new details such as title, due date, completion status, priority, and assigned user
  • delete_action: Delete an existing action from TeamRetro by its action ID

Agreements

  • list_agreements: List agreements from TeamRetro with optional filtering by team tags and team IDs, as well as pagination controls
  • create_agreement: Create a new agreement in TeamRetro by specifying the team it belongs to and its title
  • get_agreement: Retrieve a single agreement by its unique identifier
  • update_agreement: Update an existing agreement's details such as its title or associated team
  • delete_agreement: Delete an existing agreement by specifying its unique identifier

Health Checks

  • list_health_checks: List health checks from TeamRetro with optional filtering by health model IDs, team tags, and team IDs, as well as pagination controls
  • get_health_check: Retrieve a single health check by its unique identifier with optional attributes to include
  • delete_health_check: Delete an existing health check by specifying its unique identifier

Health Models

  • list_health_models: List health models from TeamRetro with pagination controls
  • get_health_model: Retrieve a single health model by its unique identifier

Retrospectives

  • list_retrospectives: List retrospectives from TeamRetro with filtering by team tags and IDs, and pagination using offset and limit parameters
  • get_retrospective: Retrieve detailed information about a single retrospective by its unique ID
  • delete_retrospective: Delete an existing retrospective by its ID

Reports

  • team_activity_report: Generate a team activity report from TeamRetro with filtering by team tags and team IDs
  • team_actions_activity_report: Generate a team actions activity report from TeamRetro with filtering by team tags and team IDs. Returns CSV data with action statistics including open, completed, and overdue action counts grouped by age ranges
  • retrospective_activity_report: Generate a retrospective activity report from TeamRetro with filtering by date range, team tags and team IDs. Returns CSV data with retrospective statistics including participation rate, idea count, comment count, action count, and agreement count
  • health_check_activity_report: Generate a health check activity report from TeamRetro with filtering by date range, team tags and team IDs. Returns CSV data with health check statistics including participation rate, comment count, action count, and agreement count
  • team_health_latest_report: Generate a team health (latest) report from TeamRetro for a specific health model with filtering by date range, team tags and team IDs. Returns CSV data with latest team health scores including health dimensions
  • team_health_historical_report: Generate a team health (historical) report from TeamRetro for a specific health model with filtering by date range, team tags and team IDs. Returns CSV data with historical team health scores including health dimensions
  • users_report: Generate a users report from TeamRetro with filtering by team tags and team IDs. Returns CSV data with user information including account roles, team memberships, and activity statistics

FAQ

Common questions

Discussion

Questions & comments · 0

Sign In Sign in to leave a comment.