@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.
package/dist/cli/index.js CHANGED
@@ -7961,14 +7961,20 @@ var MCP_SERVERS = {
7961
7961
  teams: {
7962
7962
  provider: "teams",
7963
7963
  name: "Microsoft Teams",
7964
- description: "Microsoft Teams MCP server for messaging and channel operations",
7964
+ description: "Microsoft Teams MCP server for messaging via Bot Connector API",
7965
7965
  requiresCredentials: true,
7966
7966
  npmPackages: ["@bugzy-ai/teams-mcp-server"],
7967
7967
  config: {
7968
7968
  command: "teams-mcp-server",
7969
7969
  args: [],
7970
7970
  env: {
7971
- TEAMS_ACCESS_TOKEN: "${TEAMS_ACCESS_TOKEN}"
7971
+ // Bot credentials (platform-level, from Bugzy's Azure Bot registration)
7972
+ TEAMS_BOT_APP_ID: "${TEAMS_BOT_APP_ID}",
7973
+ TEAMS_BOT_APP_PASSWORD: "${TEAMS_BOT_APP_PASSWORD}",
7974
+ TEAMS_BOT_TENANT_ID: "${TEAMS_BOT_TENANT_ID}",
7975
+ // Conversation context (per-project, from stored conversation reference)
7976
+ TEAMS_SERVICE_URL: "${TEAMS_SERVICE_URL}",
7977
+ TEAMS_CONVERSATION_ID: "${TEAMS_CONVERSATION_ID}"
7972
7978
  }
7973
7979
  }
7974
7980
  },