Skip to content

Commit 4691f9c

Browse files
author
purpleroc
committed
更新到2.0.2,适配streamable
1 parent ce3299a commit 4691f9c

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,9 @@ class CustomLLMProvider implements LLMProvider {
234234

235235
## 📊 更新日志
236236

237+
### v2.0.2
238+
- ✅ 适配streamable模式MCP服务端
239+
237240
### v2.0.1 - 统一检测引擎
238241
- ✅ 引入统一安全检测引擎
239242
- ✅ 支持工具、提示、资源三种组件类型

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "MCP Security Inspector",
4-
"version": "2.0.1",
4+
"version": "2.0.2",
55
"description": "Model Security Inspector - 用于对MCP工具、资源、Prompt进行安全分析(MCP server tools, resources and prompts security analysis)",
66
"action": {
77
"default_title": "MCP Security Inspector"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mcp-security-inspector",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Chrome扩展 - MCP协议安全性检测工具",
55
"type": "module",
66
"scripts": {
@@ -11,7 +11,7 @@
1111
"clean-dist": "rm -rf dist/public",
1212
"preview": "vite preview",
1313
"type-check": "tsc --noEmit",
14-
"package": "npm run build:extension && cd dist && zip -r ../mcp-security-inspector-v2.0.1.zip ."
14+
"package": "npm run build:extension && cd dist && zip -r ../mcp-security-inspector-v2.0.2.zip ."
1515
},
1616
"dependencies": {
1717
"@ant-design/icons": "^5.2.6",

public/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "MCP Security Inspector",
4-
"version": "2.0.1",
4+
"version": "2.0.2",
55
"description": "Model Security Inspector - 用于对MCP工具、资源、Prompt进行安全分析(MCP server tools, resources and prompts security analysis)",
66
"action": {
77
"default_title": "MCP Security Inspector"

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { MCPServerConfig } from './types/mcp';
1414
import { useI18n } from './hooks/useI18n';
1515

1616
// 版本号
17-
const APP_VERSION = '2.0.1';
17+
const APP_VERSION = '2.0.2';
1818

1919
const { Header, Content, Sider } = Layout;
2020

0 commit comments

Comments
 (0)