TeamRetro MCP Server
An unofficial MCP server that enables Claude to interact with TeamRetro.com's API for team retrospective management, providing direct pass-through to TeamRetro's public API endpoints with multiple authentication options.
adepanges
Tools
list_teams
List teams from TeamRetro with filtering and pagination
detail_team
Get a single team by ID
update_team
Update an existing team
create_team
Create a new team with optional members and tags
delete_team
Delete an existing team
list_users
List users with pagination
add_user
Add or update a user by email
update_user
Update an existing user's information
delete_user
Delete a user by email
get_user
Get a single user by email
list_team_members
List team members with pagination
README
TeamRetro MCP Server
Model Context Protocol (MCP) server for TeamRetro integration.
Important Notes
Unofficial Integration
This is an unofficial integration with TeamRetro.com. This MCP server is a community-developed tool and is not affiliated with, endorsed by, or officially connected to TeamRetro.com or its parent company.
API Integration Approach
This MCP server operates as a direct pass-through to TeamRetro's public API endpoints:
- All API calls are made directly to TeamRetro's public API endpoints
- No request interception or modification is performed
- Responses are passed through as received from TeamRetro's API
- Authentication is handled using your provided credentials
API Documentation Source
All API endpoints and functionality are based on TeamRetro's official API documentation:
- Source: https://groupmap.stoplight.io/docs/teamretro/
- Implementation strictly follows the public API specifications
- Any changes to the TeamRetro API may affect this MCP server's functionality
Installation
git clone https://github.com/adepanges/teamretro-mcp-server.git
cd teamretro-mcp-server
npm install
npm run build
Claude Integration
Add to your Claude MCP settings (cline_mcp_settings.json
):
Local Development
{
"mcpServers": {
"teamretro-mcp-server": {
"command": "node",
"args": ["/path/to/teamretro-mcp-server/dist/index.js"],
"env": {
"TEAMRETRO_BASE_URL": "https://api.teamretro.com",
"TEAMRETRO_AUTH_TYPE": "apiKey",
"TEAMRETRO_API_KEY": "your-api-key"
}
}
}
}
NPM Package
{
"mcpServers": {
"teamretro-mcp-server": {
"command": "npx",
"args": ["-y", "teamretro-mcp-server"],
"env": {
"TEAMRETRO_BASE_URL": "https://api.teamretro.com",
"TEAMRETRO_AUTH_TYPE": "apiKey",
"TEAMRETRO_API_KEY": "your-api-key"
}
}
}
}
Environment Variables Examples
API Key Authentication (Default)
{
"env": {
"TEAMRETRO_BASE_URL": "https://api.teamretro.com",
"TEAMRETRO_AUTH_TYPE": "apiKey",
"TEAMRETRO_API_KEY": "your-api-key"
}
}
Basic Authentication
{
"env": {
"TEAMRETRO_BASE_URL": "https://api.teamretro.com",
"TEAMRETRO_AUTH_TYPE": "basic",
"TEAMRETRO_USERNAME": "your-username",
"TEAMRETRO_PASSWORD": "your-password"
}
}
Bearer Token Authentication
{
"env": {
"TEAMRETRO_BASE_URL": "https://api.teamretro.com",
"TEAMRETRO_AUTH_TYPE": "bearer",
"TEAMRETRO_TOKEN": "your-bearer-token"
}
}
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.