@caixm/api-check-mcp 1.0.0 → 1.0.1
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/README.md +6 -6
- package/package.json +9 -3
- package/server.js +0 -0
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ npx api-check-mcp
|
|
|
32
32
|
"mcpServers": {
|
|
33
33
|
"api-check": {
|
|
34
34
|
"command": "npx",
|
|
35
|
-
"args": ["-y", "api-check-mcp"]
|
|
35
|
+
"args": ["-y", "@caixm/api-check-mcp"]
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -62,7 +62,7 @@ npx api-check-mcp
|
|
|
62
62
|
|
|
63
63
|
### 仅扫描当前代码
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
```md
|
|
66
66
|
# 接口排查
|
|
67
67
|
|
|
68
68
|
## 条件
|
|
@@ -74,11 +74,11 @@ expense/report
|
|
|
74
74
|
expense/page
|
|
75
75
|
secure/expense/page
|
|
76
76
|
```
|
|
77
|
-
|
|
77
|
+
```
|
|
78
78
|
|
|
79
79
|
### 按版本扫描
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
```md
|
|
82
82
|
# 接口排查
|
|
83
83
|
|
|
84
84
|
## 条件
|
|
@@ -99,7 +99,7 @@ expense/report
|
|
|
99
99
|
expense/page
|
|
100
100
|
secure/expense/page
|
|
101
101
|
```
|
|
102
|
-
|
|
102
|
+
```
|
|
103
103
|
|
|
104
104
|
## 输出结果
|
|
105
105
|
|
|
@@ -143,4 +143,4 @@ api-1700000000000.md
|
|
|
143
143
|
|
|
144
144
|
## License
|
|
145
145
|
|
|
146
|
-
MIT
|
|
146
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caixm/api-check-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "MCP server for scanning API usage in frontend projects",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"
|
|
7
|
-
|
|
6
|
+
"main": "server.js",
|
|
7
|
+
"bin": "serverserver.js",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"start": "node mcp-server.js",
|
|
10
|
+
"postinstall": "node -e \"console.log('✅ Dependencies installed successfully')\""
|
|
8
11
|
},
|
|
9
12
|
"files": [
|
|
10
13
|
"server.js"
|
|
@@ -18,5 +21,8 @@
|
|
|
18
21
|
"author": "jinkai123",
|
|
19
22
|
"engines": {
|
|
20
23
|
"node": ">=18"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@caixm/api-check-mcp": "^1.0.0"
|
|
21
27
|
}
|
|
22
28
|
}
|
package/server.js
CHANGED
|
File without changes
|