mirror of
https://github.com/RightNow-AI/openfang.git
synced 2026-08-14 00:47:51 +00:00
28 lines
896 B
TOML
28 lines
896 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 = ["-y", "teams-mcp"]
|
|
|
|
[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.
|
|
"""
|