@bugzy-ai/bugzy 1.3.0 → 1.4.0

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.d.cts CHANGED
@@ -15,6 +15,7 @@ interface MCPServerTemplate {
15
15
  name: string;
16
16
  description: string;
17
17
  requiresCredentials: boolean;
18
+ npmPackages?: string[];
18
19
  config: MCPServerConfig;
19
20
  containerExtensions?: Partial<MCPServerConfig>;
20
21
  }
package/dist/index.d.ts CHANGED
@@ -15,6 +15,7 @@ interface MCPServerTemplate {
15
15
  name: string;
16
16
  description: string;
17
17
  requiresCredentials: boolean;
18
+ npmPackages?: string[];
18
19
  config: MCPServerConfig;
19
20
  containerExtensions?: Partial<MCPServerConfig>;
20
21
  }
package/dist/index.js CHANGED
@@ -5,6 +5,7 @@ var MCP_SERVERS = {
5
5
  name: "Slack",
6
6
  description: "Slack MCP server for messaging and channel operations",
7
7
  requiresCredentials: true,
8
+ npmPackages: ["simple-slack-mcp-server"],
8
9
  config: {
9
10
  command: "slack-mcp-server",
10
11
  args: [],
@@ -18,6 +19,7 @@ var MCP_SERVERS = {
18
19
  name: "Microsoft Teams",
19
20
  description: "Microsoft Teams MCP server for messaging and channel operations",
20
21
  requiresCredentials: true,
22
+ npmPackages: ["@bugzy-ai/teams-mcp-server"],
21
23
  config: {
22
24
  command: "teams-mcp-server",
23
25
  args: [],
@@ -31,6 +33,7 @@ var MCP_SERVERS = {
31
33
  name: "Playwright",
32
34
  description: "Playwright MCP server for browser automation",
33
35
  requiresCredentials: false,
36
+ npmPackages: ["@playwright/mcp"],
34
37
  config: {
35
38
  command: "mcp-server-playwright",
36
39
  args: [
@@ -55,6 +58,7 @@ var MCP_SERVERS = {
55
58
  name: "Notion",
56
59
  description: "Notion MCP server for documentation",
57
60
  requiresCredentials: true,
61
+ npmPackages: ["@notionhq/notion-mcp-server"],
58
62
  config: {
59
63
  command: "notion-mcp-server",
60
64
  args: [],
@@ -68,6 +72,7 @@ var MCP_SERVERS = {
68
72
  name: "Jira Server (On-Prem)",
69
73
  description: "Jira Server MCP via tunnel for on-premise instances",
70
74
  requiresCredentials: true,
75
+ npmPackages: ["@mcp-tunnel/wrapper", "@bugzy-ai/jira-mcp-server"],
71
76
  config: {
72
77
  command: "mcp-tunnel",
73
78
  args: ["--server", "jira-mcp-server"],
@@ -6131,8 +6136,8 @@ var SUBAGENTS = {
6131
6136
  description: "Automatically create and track bugs and issues",
6132
6137
  icon: "bot",
6133
6138
  integrations: [
6134
- INTEGRATIONS.linear,
6135
- INTEGRATIONS.jira,
6139
+ // INTEGRATIONS.linear,
6140
+ // INTEGRATIONS.jira,
6136
6141
  INTEGRATIONS["jira-server"],
6137
6142
  INTEGRATIONS.notion,
6138
6143
  INTEGRATIONS.slack
@@ -6146,7 +6151,10 @@ var SUBAGENTS = {
6146
6151
  name: "Documentation Researcher",
6147
6152
  description: "Search and retrieve information from your documentation",
6148
6153
  icon: "file-search",
6149
- integrations: [INTEGRATIONS.notion, INTEGRATIONS.confluence],
6154
+ integrations: [
6155
+ INTEGRATIONS.notion
6156
+ // INTEGRATIONS.confluence
6157
+ ],
6150
6158
  model: "sonnet",
6151
6159
  color: "cyan",
6152
6160
  version: "1.0.0"