@mikoto_zero/minigame-open-mcp 1.15.0 → 1.16.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 +5 -6
- package/dist/proxy.js +1 -1
- package/dist/server.js +249 -171
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -99,7 +99,7 @@ curl http://localhost:5002/health # RND
|
|
|
99
99
|
|
|
100
100
|
## 📖 功能列表
|
|
101
101
|
|
|
102
|
-
###
|
|
102
|
+
### 20 个 Tools
|
|
103
103
|
|
|
104
104
|
#### 流程指引 (1)
|
|
105
105
|
|
|
@@ -130,12 +130,11 @@ curl http://localhost:5002/health # RND
|
|
|
130
130
|
- `get_user_leaderboard_scores` - 获取用户分数
|
|
131
131
|
- `get_app_status` - 获取应用审核状态
|
|
132
132
|
|
|
133
|
-
#### H5 游戏管理 (
|
|
133
|
+
#### H5 游戏管理 (3)
|
|
134
134
|
|
|
135
|
-
- `
|
|
136
|
-
- `
|
|
137
|
-
- `
|
|
138
|
-
- `h5_edit_app` - 编辑 H5 游戏信息
|
|
135
|
+
- `prepare_h5_upload` - 收集 H5 游戏信息(上传前)
|
|
136
|
+
- `upload_h5_game` - 上传 H5 游戏包
|
|
137
|
+
- `get_debug_feedbacks` - 拉取用户调试反馈并下载日志/截图
|
|
139
138
|
|
|
140
139
|
#### 振动 API 文档 (1)
|
|
141
140
|
|
package/dist/proxy.js
CHANGED
|
@@ -13767,7 +13767,7 @@ var LogWriter = class {
|
|
|
13767
13767
|
};
|
|
13768
13768
|
|
|
13769
13769
|
// src/mcp-proxy/proxy.ts
|
|
13770
|
-
var VERSION = true ? "1.
|
|
13770
|
+
var VERSION = true ? "1.16.1" : "dev";
|
|
13771
13771
|
var TapTapMCPProxy = class {
|
|
13772
13772
|
constructor(config) {
|
|
13773
13773
|
this.connected = false;
|