teams-mcp
Enables interaction with Microsoft Teams chats and channels using official Microsoft Graph API or Power Automate for enterprise environments with restricted permissions.
README
Teams MCP Server (Secure)
A secure Microsoft Teams MCP server using only official Microsoft packages.
Security
This server uses exclusively official Microsoft packages:
| Package | Source | Purpose |
|---|---|---|
@azure/identity |
Microsoft Azure SDK | Authentication |
@microsoft/microsoft-graph-client |
Microsoft Graph SDK | Graph API calls |
@modelcontextprotocol/sdk |
Anthropic MCP | MCP protocol |
No third-party authentication or API wrappers.
Prerequisites
- Node.js 18+
- Azure CLI (
az login) - required for authentication
Installation
npm install
npm run build
Authentication
The server uses Azure CLI credentials (az login). For enterprise tenants with Conditional Access policies blocking Graph API Chat permissions, use the Power Automate integration instead.
Power Automate Integration (Recommended for Enterprise)
If your organization blocks direct Graph API access to Teams chats, you can use Power Automate as a bridge:
One-time Setup
- Go to Power Automate
- Create a new Instant cloud flow
- Add trigger: "When an HTTP request is received"
- Click "Use sample payload" and enter:
{"message": "Hello"} - Add action: "Post message in a chat or channel" (Microsoft Teams)
- Configure the Teams action with your target chat/channel
- For Message, select message from Dynamic content
- Save and turn on the flow
- Copy the HTTP POST URL from the trigger
Usage
# Set your Power Automate flow URL
export POWER_AUTOMATE_URL="https://....powerplatform.com/.../invoke?api-version=1"
# Post a message (uses Azure AD auth automatically)
curl -X POST "$POWER_AUTOMATE_URL" \
-H "Authorization: Bearer $(az account get-access-token --resource https://service.flow.microsoft.com/ --query accessToken -o tsv)" \
-H "Content-Type: application/json" \
-d '{"message": "Hello from MCP!"}'
Usage
Add to your MCP config
VS Code (.vscode/mcp.json):
{
"servers": {
"teams": {
"type": "stdio",
"command": "node",
"args": ["C:/teams-mcp/dist/index.js"]
}
}
}
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"teams": {
"command": "node",
"args": ["C:/teams-mcp/dist/index.js"]
}
}
}
Available Tools
| Tool | Description |
|---|---|
get_current_user |
Get authenticated user info |
list_chats |
List user's Teams chats |
list_teams |
List joined Teams |
list_channels |
List channels in a Team |
send_chat_message |
Send message to a chat (requires Graph permissions) |
send_channel_message |
Send message to a channel (requires Graph permissions) |
get_chat_messages |
Get messages from a chat |
get_channel_messages |
Get messages from a channel |
send_via_power_automate |
Send message via Power Automate (bypasses Graph restrictions) |
Examples
Send a message via Power Automate (Recommended)
{
"tool": "send_via_power_automate",
"arguments": {
"flowUrl": "https://....powerplatform.com/.../invoke?api-version=1",
"message": "Hello from MCP!"
}
}
Send a message to a chat (requires Graph permissions)
{
"tool": "send_chat_message",
"arguments": {
"chatId": "19:abc123@thread.v2",
"message": "Hello from MCP!"
}
}
License
MIT
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.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.