drio
Open app

MCP Server

Source

Model Context Protocol (MCP) server for TeamRetro integration.

Catalog onlyCatalog onlySTDIO

Overview

TeamRetro MCP Server is a Model Context Protocol (MCP) server designed for integration with TeamRetro, allowing users to interact with TeamRetro's public API endpoints seamlessly.

To use the TeamRetro MCP Server, clone the repository from GitHub, install the necessary dependencies, and configure your environment variables for authentication.

  • Direct pass-through to TeamRetro's public API endpoints without request modification. - Supports multiple authentication methods including API key, basic, and bearer token. - Community-developed tool for unofficial integration with TeamRetro.
  1. Integrating TeamRetro functionalities into custom applications.
  2. Automating interactions with TeamRetro's API for team management.
  3. Facilitating data retrieval from TeamRetro for reporting and analysis.

Add to your AI client

Use these steps to connect MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

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

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

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

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

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

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

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

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

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

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

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

FAQ

Is TeamRetro MCP Server officially supported by TeamRetro?

No, it is an unofficial integration and not affiliated with TeamRetro.com.

What authentication methods are supported?

The server supports API key, basic, and bearer token authentication.

How do I install the TeamRetro MCP Server?

You can install it by cloning the repository and running the installation commands provided in the documentation.