MCP Teams Server
@InditexTech
关于 MCP Teams Server
An MCP (Model Context Protocol) server implementation for Microsoft Teams integration, providing capabilities to read messages, create messages, reply to messages, mention members.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"msteams": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"TEAMS_APP_ID",
"-e",
"TEAMS_APP_PASSWORD",
"-e",
"TEAMS_APP_TYPE",
"-e",
"TEAMS_APP_TENANT_ID",
"-e",
"TEAM_ID",
"-e",
"TEAMS_CHANNEL_ID",
"ghcr.io/inditextech/mcp-teams-server"
],
"env": {
"TEAMS_APP_ID": "<fill_me_with_proper_uuid>",
"TEAMS_APP_PASSWORD": "<fill_me_with_proper_uuid>",
"TEAMS_APP_TYPE": "<fill_me_with_proper_uuid>",
"TEAMS_APP_TENANT_ID": "<fill_me_with_proper_uuid>",
"TEAM_ID": "<fill_me_with_proper_uuid>",
"TEAMS_CHANNEL_ID": "<fill_me_with_proper_channel_id>",
"DOCKER_HOST": "unix:///var/run/docker.sock"
}
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is MCP Teams Server?
MCP Teams Server is an MCP (Model Context Protocol) server that integrates with Microsoft Teams, enabling reading and sending messages, replying to threads, mentioning members, and listing team members. It is intended for developers and teams who want to connect AI assistants to Microsoft Teams via MCP.
How to use MCP Teams Server?
Set up environment variables (TEAMS_APP_ID, TEAMS_APP_PASSWORD, TEAMS_APP_TYPE, TEAMS_APP_TENANT_ID, TEAM_ID, TEAMS_CHANNEL_ID) in a shell or .env file, then run uv run mcp-teams-server. Optionally, use a pre‑built Docker image from ghcr.io or build it locally.
Key features of MCP Teams Server
- Start a thread in a channel with title and content, mentioning users.
- Update existing threads with message replies, mentioning users.
- Read thread replies.
- List channel team members.
- Read channel messages.
Use cases of MCP Teams Server
- Automating team notifications and updates in Microsoft Teams.
- Building AI assistants that can read and respond to Teams messages.
- Integrating MCP‑based tools with Microsoft team communication workflows.
FAQ from MCP Teams Server
What does MCP Teams Server do?
It provides an MCP interface to Microsoft Teams, allowing an AI assistant to read and post messages, start and reply to threads, and list team members.
What dependencies are required?
Python 3.10, the uv package manager, and a Microsoft Teams account with proper Azure setup (see the documentation for details).
Where does the MCP Teams Server data live?
All data resides in the connected Microsoft Teams tenant and channels; the server acts as a client and does not store data locally.
What are the transport and authentication methods?
The server uses standard MCP transport (stdio by default) and authenticates to Microsoft Graph API using environment variables for app‑only or delegated credentials (single‑ or multi‑tenant).
Are there any known limits?
The README does not mention specific limits; the server is subject to Microsoft Teams API rate limits.
沟通协作 分类下的更多 MCP 服务器
Email sending MCP 💌
resendThe official MCP server to send emails and interact with Resend
MCP Communicator (Telegram)
qpd-vAn MCP server that enables communication with users through Telegram. This server provides a tool to ask questions to users and receive their responses via a Telegram bot.
Teams Mcp
floriscornelMCP server providing comprehensive Microsoft Teams and Graph API access for AI assistants including messaging, search, and user management.
Slack MCP Server
korotovskyThe most powerful MCP Slack Server with no permission requirements, Apps support, GovSlack, DMs, Group DMs and smart history fetch logic.
slack-mcp-server
ubie-ossA Slack MCP server
评论