@backstage-community/plugin-mcp-chat 0.1.1 → 0.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,45 @@
1
1
  # @backstage-community/plugin-mcp-chat
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - c330b2c: **BREAKING**: Removed SSE (Server-Sent Events) transport support
8
+
9
+ The deprecated `SSEClientTransport` has been removed in favor of `StreamableHTTPClientTransport`, which is the modern MCP standard.
10
+
11
+ **Migration:**
12
+
13
+ If you had MCP servers configured with `type: sse`, update your configuration:
14
+
15
+ ```yaml
16
+ # Before (no longer supported)
17
+ mcpServers:
18
+ - id: my-server
19
+ name: My Server
20
+ type: sse
21
+ url: 'http://example.com/sse'
22
+
23
+ # After
24
+ mcpServers:
25
+ - id: my-server
26
+ name: My Server
27
+ url: 'http://example.com/mcp' # type is auto-detected when url is present
28
+ ```
29
+
30
+ **Changes:**
31
+
32
+ - Removed `MCPServerType.SSE` enum value from both frontend and backend
33
+ - Removed SSE transport fallback logic from `MCPClientServiceImpl`
34
+ - Updated configuration schema to only accept `stdio` and `streamable-http` types
35
+ - HTTP servers are now auto-detected when a `url` field is present
36
+
37
+ ## 0.1.2
38
+
39
+ ### Patch Changes
40
+
41
+ - 0cd7a1d: Bump typescript compiler to 5.4
42
+
3
43
  ## 0.1.1
4
44
 
5
45
  ### Patch Changes
package/README.md CHANGED
@@ -11,7 +11,7 @@ The MCP Chat plugin brings conversational AI capabilities directly into your Bac
11
11
  ## Features
12
12
 
13
13
  - 🤖 **Multi-Provider AI Support**: Works with OpenAI, Claude, Gemini, and Ollama
14
- - 🔧 **Multi-Server Support**: Connect multiple MCP servers (STDIO, SSE, Streamable HTTP)
14
+ - 🔧 **Multi-Server Support**: Connect multiple MCP servers (STDIO, Streamable HTTP)
15
15
  - 🛠️ **Tool Management**: Browse and dynamically enable/disable tools from connected MCP servers
16
16
  - 💬 **Rich Chat Interface**: Beautiful, responsive chat UI with markdown support
17
17
  - ⚡ **Quick Setup**: Configurable QuickStart prompts for common use cases
@@ -198,7 +198,7 @@ mcpChat:
198
198
  category: Catalog
199
199
  ```
200
200
 
201
- For more advanced MCP server configuration examples (including STDIO, Streamable HTTP, SSE, custom scripts, and arguments), see [SERVER_CONFIGURATION](../../docs/SERVER_CONFIGURATION.md).
201
+ For more advanced MCP server configuration examples (including STDIO, Streamable HTTP, custom scripts, and arguments), see [SERVER_CONFIGURATION](../../docs/SERVER_CONFIGURATION.md).
202
202
 
203
203
  ### Environment Variables
204
204
 
package/dist/index.d.ts CHANGED
@@ -26,7 +26,6 @@ declare const MCPChatIcon: IconComponent;
26
26
  */
27
27
  declare enum MCPServerType {
28
28
  STDIO = "stdio",
29
- SSE = "sse",
30
29
  STREAMABLE_HTTP = "streamable-http"
31
30
  }
32
31
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-mcp-chat",
3
3
  "description": "A Backstage plugin that provides a chat interface for interacting with the MCP Servers.",
4
- "version": "0.1.1",
4
+ "version": "0.2.0",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.esm.js",
7
7
  "types": "dist/index.d.ts",
@@ -43,16 +43,18 @@
43
43
  "@types/react": "^17.0.0 || ^18.0.0",
44
44
  "react": "^17.0.0 || ^18.0.0",
45
45
  "react-dom": "^17.0.0 || ^18.0.0",
46
- "react-router": "^6.3.0",
46
+ "react-router": "^6.30.2",
47
47
  "react-router-dom": "^6.3.0"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@backstage/cli": "^0.33.0",
51
51
  "@backstage/dev-utils": "^1.1.11",
52
52
  "@backstage/test-utils": "^1.7.8",
53
+ "@testing-library/dom": "^10.4.1",
53
54
  "@testing-library/jest-dom": "^6.0.0",
54
- "@testing-library/react": "^14.0.0",
55
+ "@testing-library/react": "^16.0.0",
55
56
  "@types/react": "^17.0.0 || ^18.0.0",
57
+ "@types/react-dom": "^19.2.3",
56
58
  "react": "^17.0.0 || ^18.0.0",
57
59
  "react-dom": "^17.0.0 || ^18.0.0",
58
60
  "react-router-dom": "^6.3.0"