.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/inditextech/mcp-teams-server
home/mcp-servers/inditextech/mcp-teams-server
inditextech avatar

mcp-teams-server

byinditextech· 2 MCP servers

Stars

386

Forks

36

Category

Agent Meta & Communication

View on GitHub

TL;DR

An MCP (Model Context Protocol) server implementation for Microsoft Teams integration, providing capabilities to read messages, create messages, reply to mess

How to install mcp-teams-server?

inditextech/mcp-teams-server
$git clone https://github.com/inditextech/mcp-teams-server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-teams-server by running `git clone https://github.com/inditextech/mcp-teams-server`, then use it for the current task and follow its documentation at https://github.com/inditextech/mcp-teams-server.

Files · 1

View on GitHub
README.md
1[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=InditexTech_mcp-teams-server&metric=bugs)](https://sonarcloud.io/summary/new_code?id=InditexTech_mcp-teams-server)
2[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=InditexTech_mcp-teams-server&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=InditexTech_mcp-teams-server)
3[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=InditexTech_mcp-teams-server&metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=InditexTech_mcp-teams-server)
4![GitHub License](https://img.shields.io/github/license/InditexTech/mcp-teams-server)
5![GitHub Release](https://img.shields.io/github/v/release/InditexTech/mcp-teams-server)
6[![Scorecard](https://api.scorecard.dev/projects/github.com/InditexTech/mcp-teams-server/badge)](https://scorecard.dev/viewer/?uri=github.com/InditexTech/mcp-teams-server)
7<!-- [![Best Practices](https://www.bestpractices.dev/projects/10400/badge)](https://www.bestpractices.dev/projects/10400) -->
8 
9 
10# MCP Teams Server
11 
12An MCP ([Model Context Protocol](https://modelcontextprotocol.io/introduction)) server implementation for
13[Microsoft Teams](https://www.microsoft.com/en-us/microsoft-teams/group-chat-software/) integration, providing capabilities to
14read messages, create messages, reply to messages, mention members.
15 
16## Features
17 
18https://github.com/user-attachments/assets/548a9768-1119-4a2d-bd5c-6b41069fc522
19 
20- Start thread in channel with title and contents, mentioning users
21- Update existing threads with message replies, mentioning users
22- Read thread replies
23- List channel team members
24- Read channel messages
25 
26## Prerequisites
27 
28- [uv](https://github.com/astral-sh/uv) package manager
29- [Python 3.10](https://www.python.org/)
30- Microsoft Teams account with [proper set-up](./doc/MS-Teams-setup.md)
31 
32## Installation
33 
341. Clone the repository:
35 
36```bash
37git clone [repository-url]
38cd mcp-teams-server
39```
40 
412. Create a virtual environment and install dependencies:
42 
43```bash
44uv venv
45uv sync --frozen --all-extras --dev
46```
47 
48## Teams configuration
49 
50Please read [this document](./doc/MS-Teams-setup.md) to help you to configure Microsoft Teams and required
51Azure resources. It is not a step-by-step guide but can help you figure out what you will need.
52 
53## Usage
54 
55Set up the following environment variables in your shell or in an .env file. You can use [sample file](./sample.env)
56as a template:
57 
58| Key | Description |
59|-------------------------|--------------------------------------------|
60| **TEAMS_APP_ID** | UUID for your MS Entra ID application ID |
61| **TEAMS_APP_PASSWORD** | Client secret |
62| **TEAMS_APP_TYPE** | SingleTenant or MultiTenant |
63| **TEAMS_APP_TENANT_ID** | Tenant uuid in case of SingleTenant |
64| **TEAM_ID** | MS Teams Group Id or Team Id |
65| **TEAMS_CHANNEL_ID** | MS Teams Channel ID with url escaped chars |
66 
67Start the server:
68 
69```bash
70uv run mcp-teams-server
71```
72 
73## Development
74 
75Integration tests require the set-up the following environment variables:
76 
77| Key | Description |
78|------------------------|--------------------------------|
79| **TEST_THREAD_ID** | timestamp of the thread id |
80| **TEST_MESSAGE_ID** | timestamp of the message id |
81| **TEST_USER_NAME** | test user name |
82 
83 
84```bash
85uv run pytest -m integration
86```
87 
88### Pre-built docker image
89 
90There is a [pre-built image](https://github.com/InditexTech/mcp-teams-server/pkgs/container/mcp-teams-server) hosted in ghcr.io.
91You can install this image by running the following command
92 
93```commandline
94docker pull ghcr.io/inditextech/mcp-teams-server:latest
95```
96 
97### Build docker image
98 
99A docker image is available to run MCP server. You can build it with the following command:
100 
101```bash
102docker build . -t inditexte

Preview

inditextech/mcp-teams-serverinditextech/mcp-teams-server

[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=InditexTech_mcp-teams-server&metric=bugs)](https://sonarcloud.io/summary/new_code?id=InditexTe

[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=InditexTech_mcp-teams-server&metric=sqale_rating)](https://sonarcloud.io/sum

[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=InditexTech_mcp-teams-server&metric=reliability_rating)](https://sonarcloud.io/s

![GitHub License](https://img.shields.io/github/license/InditexTech/mcp-teams-server)

Repoinditextech/mcp-teams-server
TypeMCP Servers
CategoryAgent Meta & Communication
UpdatedJun 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCPinditexmcp

Related

6 picks
Type
  1. cdeust avatarcortexScientifically-grounded persistent memory for Claude — local-first, hybrid retrieval, 72 references.MCP ServersJul 20262.7k68
  2. samanhappy avatarmcphubA hub server for mcp serversMCP ServersJul 20262.7k2.3k
  3. loonghao avatarwecom-bot-mcp-serverWeCom Bot MCP Server - A Python server for WeCom (WeChat Work) bot following the Model Context Protocol (MCP)MCP ServersJul 20262.5k98
  4. toolprint avatarhypertool-mcpDynamically expose tools from proxied servers based on an Agent PersonaMCP ServersOct 20252.0k155
  5. arindam200 avatarreddit-mcpReddit MCP ServerMCP ServersDec 20252.0k296
  6. raysonmeng avataragent-bridgeBridge between Claude Code and Codex — bidirectional agent communication via MCP Channel + JSON-RPCMCP ServersJul 20261.8k270