Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
28 lines
915 B
TOML
28 lines
915 B
TOML
id = "teams-mcp"
|
|
name = "Microsoft Teams"
|
|
description = "Access Microsoft Teams channels, chats, and messages through the MCP server"
|
|
category = "communication"
|
|
icon = "👥"
|
|
tags = ["chat", "messaging", "microsoft", "enterprise", "collaboration"]
|
|
|
|
[transport]
|
|
type = "stdio"
|
|
command = "npx"
|
|
args = ["@modelcontextprotocol/server-teams"]
|
|
|
|
[oauth]
|
|
provider = "microsoft"
|
|
scopes = ["Team.ReadBasic.All", "Chat.ReadWrite"]
|
|
auth_url = "https://login.microsoftonline.com/common/oauth2/v2.0/authorize"
|
|
token_url = "https://login.microsoftonline.com/common/oauth2/v2.0/token"
|
|
|
|
[health_check]
|
|
interval_secs = 60
|
|
unhealthy_threshold = 3
|
|
|
|
setup_instructions = """
|
|
1. Click 'Connect' to initiate the OAuth flow with your Microsoft account.
|
|
2. Sign in with your Microsoft 365 account and grant OpenFang permission to read teams and read/write chats.
|
|
3. The connection will be established automatically after authorization.
|
|
"""
|