M
Microsoft Teams
Read and post Microsoft Teams messages and channels.
·No reviews yet
Share:
About
Auto-generated
Microsoft Teams is a Model Context Protocol server in the Communication category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
send_message
Post a message to a channel or user
list_channels
List channels the bot can access
search_messages
Search messages by query and date range
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Microsoft Teams.
- What is the Microsoft Teams MCP and what does it do?
- The Microsoft Teams MCP primarily allows reading and posting messages in Microsoft Teams channels. It integrates with Microsoft Teams to enable programmatic interaction with chat functionalities. Typical use cases involve automating notifications or integrating with other services.
- What authentication method does the Microsoft Teams MCP use?
- This MCP uses OAuth for authentication. Users will need to authorize the MCP to access their Microsoft Teams account. This ensures secure access to Teams functionalities.
- Does using the Microsoft Teams MCP cost anything?
- The MCP itself is community-provided and open-source, implying no direct cost for the MCP software. However, usage costs for Microsoft Teams itself are subject to Microsoft's licensing. It depends on your existing Microsoft 365 subscription.
- How can I install the Microsoft Teams MCP in a client like Cline?
- Since the transport is 'stdio', you typically configure Cline to execute the MCP's server binary. You would then provide the necessary OAuth credentials to the MCP. Exact steps depend on Cline's configuration interface, but generally involve specifying the executable path.
- Can I use the Microsoft Teams MCP to manage team settings or user permissions?
- Based on the description, this MCP focuses on reading and posting messages. There is no indication it exposes tools for managing team settings, user permissions, or other administrative functions. Its scope appears limited to basic chat interactions in Microsoft Teams channels.
- What is a prerequisite for using the Microsoft Teams MCP?
- A key prerequisite for using this MCP is an active Microsoft Teams account and appropriate permissions. OAuth authentication requires consent to access your Teams data. Without a valid account and authorization, the MCP cannot function.
Install Microsoft Teams
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"microsoft-teams": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-microsoft-teams"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"microsoft-teams": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-microsoft-teams"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"microsoft-teams": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-microsoft-teams"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.