@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/index.js CHANGED
@@ -17,14 +17,20 @@ var MCP_SERVERS = {
17
17
  teams: {
18
18
  provider: "teams",
19
19
  name: "Microsoft Teams",
20
- description: "Microsoft Teams MCP server for messaging and channel operations",
20
+ description: "Microsoft Teams MCP server for messaging via Bot Connector API",
21
21
  requiresCredentials: true,
22
22
  npmPackages: ["@bugzy-ai/teams-mcp-server"],
23
23
  config: {
24
24
  command: "teams-mcp-server",
25
25
  args: [],
26
26
  env: {
27
- TEAMS_ACCESS_TOKEN: "${TEAMS_ACCESS_TOKEN}"
27
+ // Bot credentials (platform-level, from Bugzy's Azure Bot registration)
28
+ TEAMS_BOT_APP_ID: "${TEAMS_BOT_APP_ID}",
29
+ TEAMS_BOT_APP_PASSWORD: "${TEAMS_BOT_APP_PASSWORD}",
30
+ TEAMS_BOT_TENANT_ID: "${TEAMS_BOT_TENANT_ID}",
31
+ // Conversation context (per-project, from stored conversation reference)
32
+ TEAMS_SERVICE_URL: "${TEAMS_SERVICE_URL}",
33
+ TEAMS_CONVERSATION_ID: "${TEAMS_CONVERSATION_ID}"
28
34
  }
29
35
  }
30
36
  },