@bugzy-ai/bugzy 1.9.4 → 1.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7969,14 +7969,20 @@ var MCP_SERVERS = {
7969
7969
  teams: {
7970
7970
  provider: "teams",
7971
7971
  name: "Microsoft Teams",
7972
- description: "Microsoft Teams MCP server for messaging and channel operations",
7972
+ description: "Microsoft Teams MCP server for messaging via Bot Connector API",
7973
7973
  requiresCredentials: true,
7974
7974
  npmPackages: ["@bugzy-ai/teams-mcp-server"],
7975
7975
  config: {
7976
7976
  command: "teams-mcp-server",
7977
7977
  args: [],
7978
7978
  env: {
7979
- TEAMS_ACCESS_TOKEN: "${TEAMS_ACCESS_TOKEN}"
7979
+ // Bot credentials (platform-level, from Bugzy's Azure Bot registration)
7980
+ TEAMS_BOT_APP_ID: "${TEAMS_BOT_APP_ID}",
7981
+ TEAMS_BOT_APP_PASSWORD: "${TEAMS_BOT_APP_PASSWORD}",
7982
+ TEAMS_BOT_TENANT_ID: "${TEAMS_BOT_TENANT_ID}",
7983
+ // Conversation context (per-project, from stored conversation reference)
7984
+ TEAMS_SERVICE_URL: "${TEAMS_SERVICE_URL}",
7985
+ TEAMS_CONVERSATION_ID: "${TEAMS_CONVERSATION_ID}"
7980
7986
  }
7981
7987
  }
7982
7988
  },