@taptap/instant-games-open-mcp 1.24.3 → 1.24.4
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 +4 -3
- package/dist/maker.js +9 -1
- package/dist/proxy.js +1 -1
- package/dist/server.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
Maker 本地开发按“初始化用 CLI,开发循环用 MCP”拆分。首次配置推荐直接运行:
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
|
-
npx -y
|
|
52
|
+
npx -y @taptap/maker init
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
CLI 负责一次性流程:Git 检查、PAT 保存、TapTap token 换取、app 列表选择、Maker Git
|
|
@@ -64,14 +64,15 @@ taptap-maker init
|
|
|
64
64
|
taptap-maker doctor
|
|
65
65
|
taptap-maker apps --json
|
|
66
66
|
taptap-maker pat set
|
|
67
|
-
taptap-maker
|
|
67
|
+
taptap-maker install --ide codex,cursor,claude
|
|
68
68
|
taptap-maker mcp verify
|
|
69
69
|
taptap-maker dev-kit update
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
`taptap-maker pat set` 默认通过交互式 prompt 接收 PAT,避免把 PAT 写进
|
|
73
73
|
`ps` 进程列表或 shell history;自动化场景可用 `--pat-stdin` 从标准输入读取。
|
|
74
|
-
`taptap-maker
|
|
74
|
+
`taptap-maker install` 是 `taptap-maker mcp install` 的快捷别名,二者都会写入 AI 客户端
|
|
75
|
+
MCP 配置。`taptap-maker mcp verify` 默认验证 `mcp install` 写入 AI 客户端配置的 npx 启动命令;
|
|
75
76
|
本地开发只想验证当前 CLI 时可加 `--mode self`。如果验证输出 `status: null` 或
|
|
76
77
|
`failure_type`,说明本地 Node/npm/npx 启动命令还没正常跑通,Maker MCP server
|
|
77
78
|
尚未启动;这不是 PAT、app 选择或 Maker 业务接口报错。先按输出里的 command
|
package/dist/maker.js
CHANGED
|
@@ -31213,7 +31213,7 @@ function compactRuntimeLogEntry(entry) {
|
|
|
31213
31213
|
}
|
|
31214
31214
|
|
|
31215
31215
|
// src/maker/server/mcp.ts
|
|
31216
|
-
var VERSION = true ? "1.24.
|
|
31216
|
+
var VERSION = true ? "1.24.4" : "dev";
|
|
31217
31217
|
var DEFAULT_BUILD_TIMEOUT_MS = 10 * 60 * 1e3;
|
|
31218
31218
|
var PREVIEW_REFRESH_TIMEOUT_MS = 15 * 1e3;
|
|
31219
31219
|
var WATCHER_STOP_TIMEOUT_MS = 1500;
|
|
@@ -32808,6 +32808,10 @@ async function runMakerCli(argv) {
|
|
|
32808
32808
|
await runPatSet(parsed, ctx);
|
|
32809
32809
|
return;
|
|
32810
32810
|
}
|
|
32811
|
+
if (command === "install") {
|
|
32812
|
+
await runMcpInstall(parsed, ctx);
|
|
32813
|
+
return;
|
|
32814
|
+
}
|
|
32811
32815
|
if (command === "mcp" && subcommand === "install") {
|
|
32812
32816
|
await runMcpInstall(parsed, ctx);
|
|
32813
32817
|
return;
|
|
@@ -33842,6 +33846,8 @@ function printHelp() {
|
|
|
33842
33846
|
" # --pat warns: PAT appears in ps/history",
|
|
33843
33847
|
" taptap-maker pat set [--pat-stdin] [--json]",
|
|
33844
33848
|
" taptap-maker pat set [PAT|--pat PAT] [--json] # warns: PAT appears in ps/history",
|
|
33849
|
+
" taptap-maker install [--ide codex,cursor,claude] [--env rnd|production]",
|
|
33850
|
+
" [--json] # alias for mcp install",
|
|
33845
33851
|
" taptap-maker mcp install [--ide codex,cursor,claude] [--env rnd|production]",
|
|
33846
33852
|
" [--json]",
|
|
33847
33853
|
" taptap-maker mcp verify [--mode npx|self] [--json]",
|
|
@@ -36488,6 +36494,8 @@ function printHelp2() {
|
|
|
36488
36494
|
" # --pat warns: PAT appears in ps/history",
|
|
36489
36495
|
" taptap-maker pat set [--pat-stdin] [--json]",
|
|
36490
36496
|
" taptap-maker pat set [PAT|--pat PAT] [--json] # warns: PAT appears in ps/history",
|
|
36497
|
+
" taptap-maker install [--ide codex,cursor,claude] [--env rnd|production]",
|
|
36498
|
+
" [--json] # alias for mcp install",
|
|
36491
36499
|
" taptap-maker mcp install [--ide codex,cursor,claude] [--env rnd|production]",
|
|
36492
36500
|
" [--json]",
|
|
36493
36501
|
" taptap-maker mcp verify [--mode npx|self] [--json]",
|
package/dist/proxy.js
CHANGED
|
@@ -29137,7 +29137,7 @@ var LogWriter = class {
|
|
|
29137
29137
|
};
|
|
29138
29138
|
|
|
29139
29139
|
// src/mcp-proxy/proxy.ts
|
|
29140
|
-
var VERSION = true ? "1.24.
|
|
29140
|
+
var VERSION = true ? "1.24.4" : "dev";
|
|
29141
29141
|
var LOCAL_PROXY_TAG = "local";
|
|
29142
29142
|
var TapTapMCPProxy = class {
|
|
29143
29143
|
constructor(config2) {
|
package/dist/server.js
CHANGED
|
@@ -6090,7 +6090,7 @@ class MultiplayerManager {
|
|
|
6090
6090
|
// 导出
|
|
6091
6091
|
// export default MultiplayerManager;
|
|
6092
6092
|
// module.exports = MultiplayerManager;
|
|
6093
|
-
// window.MultiplayerManager = MultiplayerManager;`}]}}};var ws;ws="1.24.
|
|
6093
|
+
// window.MultiplayerManager = MultiplayerManager;`}]}}};var ws;ws="1.24.4";async function FRe(){return Go(Rm,"api_event_relations")}async function BRe(){return Go(Rm,"protocol_template")}async function SD(){return Go(Rm,"complete_example")}async function URe(){return`# TapTap 多人联机集成指南
|
|
6094
6094
|
|
|
6095
6095
|
---
|
|
6096
6096
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taptap/instant-games-open-mcp",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "TapTap Open API MCP Server - Documentation and Management APIs for TapTap Minigame and H5 Games (Leaderboard, and more features coming)",
|
|
6
6
|
"main": "dist/server.js",
|