@cloudbase/cloudbase-mcp 2.7.0 → 2.7.3
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/dist/cli.cjs +2 -2
- package/dist/index.cjs +54 -4
- package/dist/index.d.ts +1 -0
- package/dist/index.js +56 -5
- package/package.json +5 -1
package/dist/index.cjs
CHANGED
|
@@ -1614,6 +1614,7 @@ warn.forProperties(exports, 'deprecated', ['emitErrs', 'levelLength']);
|
|
|
1614
1614
|
"use strict";
|
|
1615
1615
|
|
|
1616
1616
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1617
|
+
exports.simplifyEnvList = simplifyEnvList;
|
|
1617
1618
|
exports.registerEnvTools = registerEnvTools;
|
|
1618
1619
|
const zod_1 = __webpack_require__(21614);
|
|
1619
1620
|
const auth_js_1 = __webpack_require__(77291);
|
|
@@ -1621,6 +1622,36 @@ const cloudbase_manager_js_1 = __webpack_require__(3431);
|
|
|
1621
1622
|
const logger_js_1 = __webpack_require__(13039);
|
|
1622
1623
|
const interactive_js_1 = __webpack_require__(3461);
|
|
1623
1624
|
const rag_js_1 = __webpack_require__(64215);
|
|
1625
|
+
/**
|
|
1626
|
+
* Simplify environment list data by keeping only essential fields for AI assistant
|
|
1627
|
+
* This reduces token consumption when returning environment lists via MCP tools
|
|
1628
|
+
* @param envList - Full environment list from API
|
|
1629
|
+
* @returns Simplified environment list with only essential fields
|
|
1630
|
+
*/
|
|
1631
|
+
function simplifyEnvList(envList) {
|
|
1632
|
+
if (!Array.isArray(envList)) {
|
|
1633
|
+
return envList;
|
|
1634
|
+
}
|
|
1635
|
+
return envList.map((env) => {
|
|
1636
|
+
// Only keep essential fields that are useful for AI assistant
|
|
1637
|
+
const simplified = {};
|
|
1638
|
+
if (env.EnvId !== undefined)
|
|
1639
|
+
simplified.EnvId = env.EnvId;
|
|
1640
|
+
if (env.Alias !== undefined)
|
|
1641
|
+
simplified.Alias = env.Alias;
|
|
1642
|
+
if (env.Status !== undefined)
|
|
1643
|
+
simplified.Status = env.Status;
|
|
1644
|
+
if (env.EnvType !== undefined)
|
|
1645
|
+
simplified.EnvType = env.EnvType;
|
|
1646
|
+
if (env.Region !== undefined)
|
|
1647
|
+
simplified.Region = env.Region;
|
|
1648
|
+
if (env.PackageName !== undefined)
|
|
1649
|
+
simplified.PackageName = env.PackageName;
|
|
1650
|
+
if (env.IsDefault !== undefined)
|
|
1651
|
+
simplified.IsDefault = env.IsDefault;
|
|
1652
|
+
return simplified;
|
|
1653
|
+
});
|
|
1654
|
+
}
|
|
1624
1655
|
function registerEnvTools(server) {
|
|
1625
1656
|
// 获取 cloudBaseOptions,如果没有则为 undefined
|
|
1626
1657
|
const cloudBaseOptions = server.cloudBaseOptions;
|
|
@@ -1820,6 +1851,10 @@ function registerEnvTools(server) {
|
|
|
1820
1851
|
result = await cloudbaseList.env.listEnvs();
|
|
1821
1852
|
(0, cloudbase_manager_js_1.logCloudBaseResult)(server.logger, result);
|
|
1822
1853
|
}
|
|
1854
|
+
// Apply field simplification for MCP tool response to reduce token consumption
|
|
1855
|
+
if (result && Array.isArray(result.EnvList)) {
|
|
1856
|
+
result.EnvList = simplifyEnvList(result.EnvList);
|
|
1857
|
+
}
|
|
1823
1858
|
}
|
|
1824
1859
|
catch (error) {
|
|
1825
1860
|
(0, logger_js_1.debug)("获取环境列表时出错,尝试降级到 listEnvs():", error instanceof Error ? error : new Error(String(error)));
|
|
@@ -1832,6 +1867,10 @@ function registerEnvTools(server) {
|
|
|
1832
1867
|
});
|
|
1833
1868
|
result = await cloudbaseList.env.listEnvs();
|
|
1834
1869
|
(0, cloudbase_manager_js_1.logCloudBaseResult)(server.logger, result);
|
|
1870
|
+
// Apply field simplification for fallback response as well
|
|
1871
|
+
if (result && Array.isArray(result.EnvList)) {
|
|
1872
|
+
result.EnvList = simplifyEnvList(result.EnvList);
|
|
1873
|
+
}
|
|
1835
1874
|
}
|
|
1836
1875
|
catch (fallbackError) {
|
|
1837
1876
|
(0, logger_js_1.debug)("降级到 listEnvs() 也失败:", fallbackError instanceof Error ? fallbackError : new Error(String(fallbackError)));
|
|
@@ -137019,7 +137058,7 @@ class TelemetryReporter {
|
|
|
137019
137058
|
const nodeVersion = process.version; // Node.js版本
|
|
137020
137059
|
const arch = os_1.default.arch(); // 系统架构
|
|
137021
137060
|
// 从构建时注入的版本号获取MCP版本信息
|
|
137022
|
-
const mcpVersion = process.env.npm_package_version || "2.7.
|
|
137061
|
+
const mcpVersion = process.env.npm_package_version || "2.7.3" || 0;
|
|
137023
137062
|
return {
|
|
137024
137063
|
userAgent: `${osType} ${osRelease} ${arch} ${nodeVersion} CloudBase-MCP/${mcpVersion}`,
|
|
137025
137064
|
deviceId: this.deviceId,
|
|
@@ -203583,7 +203622,7 @@ ${envIdSection}
|
|
|
203583
203622
|
## 环境信息
|
|
203584
203623
|
- 操作系统: ${os_1.default.type()} ${os_1.default.release()}
|
|
203585
203624
|
- Node.js版本: ${process.version}
|
|
203586
|
-
- MCP 版本:${process.env.npm_package_version || "2.7.
|
|
203625
|
+
- MCP 版本:${process.env.npm_package_version || "2.7.3" || 0}
|
|
203587
203626
|
- 系统架构: ${os_1.default.arch()}
|
|
203588
203627
|
- 时间: ${new Date().toISOString()}
|
|
203589
203628
|
- 请求ID: ${requestId}
|
|
@@ -217955,6 +217994,7 @@ const IDE_TYPES = [
|
|
|
217955
217994
|
"vscode", // Visual Studio Code
|
|
217956
217995
|
"kiro", // Kiro AI编辑器
|
|
217957
217996
|
"aider", // Aider AI编辑器
|
|
217997
|
+
"iflow-cli", // iFlow CLI
|
|
217958
217998
|
];
|
|
217959
217999
|
// IDE到文件的映射关系
|
|
217960
218000
|
// 注意:以 "/" 结尾的路径表示目录,会包含该目录下的所有文件
|
|
@@ -217966,6 +218006,8 @@ exports.RAW_IDE_FILE_MAPPINGS = {
|
|
|
217966
218006
|
windsurf: [{ path: ".windsurf/rules/" }],
|
|
217967
218007
|
codebuddy: [
|
|
217968
218008
|
{ path: ".rules/cloudbase-rules.md" },
|
|
218009
|
+
{ path: ".rules/cloudbase-rules.mdc" },
|
|
218010
|
+
{ path: ".codebuddy/" },
|
|
217969
218011
|
{ path: "CODEBUDDY.md" },
|
|
217970
218012
|
{ path: ".mcp.json", isMcpConfig: true },
|
|
217971
218013
|
],
|
|
@@ -218012,6 +218054,10 @@ exports.RAW_IDE_FILE_MAPPINGS = {
|
|
|
218012
218054
|
{ path: ".kiro/steering/" },
|
|
218013
218055
|
],
|
|
218014
218056
|
aider: [{ path: "mcp.json", isMcpConfig: true }],
|
|
218057
|
+
"iflow-cli": [
|
|
218058
|
+
{ path: "IFLOW.md" },
|
|
218059
|
+
{ path: ".iflow/settings.json", isMcpConfig: true },
|
|
218060
|
+
],
|
|
218015
218061
|
};
|
|
218016
218062
|
const IDE_FILE_MAPPINGS = structuredClone(exports.RAW_IDE_FILE_MAPPINGS);
|
|
218017
218063
|
// 所有IDE配置文件的完整列表 - 通过IDE_FILE_MAPPINGS计算得出
|
|
@@ -218043,6 +218089,7 @@ const IDE_DESCRIPTIONS = {
|
|
|
218043
218089
|
vscode: "Visual Studio Code",
|
|
218044
218090
|
kiro: "Kiro AI编辑器",
|
|
218045
218091
|
aider: "Aider AI编辑器",
|
|
218092
|
+
"iflow-cli": "iFlow CLI",
|
|
218046
218093
|
};
|
|
218047
218094
|
// INTEGRATION_IDE 环境变量值到 IDE 类型的映射
|
|
218048
218095
|
const INTEGRATION_IDE_MAPPING = {
|
|
@@ -218067,6 +218114,7 @@ const INTEGRATION_IDE_MAPPING = {
|
|
|
218067
218114
|
Antigravity: "antigravity",
|
|
218068
218115
|
VSCode: "vscode",
|
|
218069
218116
|
Kiro: "kiro",
|
|
218117
|
+
iFlow: "iflow-cli",
|
|
218070
218118
|
};
|
|
218071
218119
|
// 根据 INTEGRATION_IDE 环境变量获取默认 IDE 类型
|
|
218072
218120
|
function getDefaultIDEFromEnv() {
|
|
@@ -218295,7 +218343,7 @@ function registerSetupTools(server) {
|
|
|
218295
218343
|
title: "下载项目模板",
|
|
218296
218344
|
description: `自动下载并部署CloudBase项目模板。⚠️ **MANDATORY FOR NEW PROJECTS** ⚠️
|
|
218297
218345
|
|
|
218298
|
-
**CRITICAL**: This tool MUST be called FIRST when starting a new project.\n\n支持的模板:\n- react: React + CloudBase 全栈应用模板\n- vue: Vue + CloudBase 全栈应用模板\n- miniprogram: 微信小程序 + 云开发模板 \n- uniapp: UniApp + CloudBase 跨端应用模板\n- rules: 只包含AI编辑器配置文件(包含Cursor、WindSurf、CodeBuddy等所有主流编辑器配置),适合在已有项目中补充AI编辑器配置\n\n支持的IDE类型:\n- all: 下载所有IDE配置(默认)\n- cursor: Cursor AI编辑器\n- windsurf: WindSurf AI编辑器\n- codebuddy: CodeBuddy AI编辑器\n- claude-code: Claude Code AI编辑器\n- cline: Cline AI编辑器\n- gemini-cli: Gemini CLI\n- opencode: OpenCode AI编辑器\n- qwen-code: 通义灵码\n- baidu-comate: 百度Comate\n- openai-codex-cli: OpenAI Codex CLI\n- augment-code: Augment Code\n- github-copilot: GitHub Copilot\n- roocode: RooCode AI编辑器\n- tongyi-lingma: 通义灵码\n- trae: Trae AI编辑器\n- qoder: Qoder AI编辑器\n- antigravity: Google Antigravity AI编辑器\n- vscode: Visual Studio Code\n- kiro: Kiro AI编辑器\n- aider: Aider AI编辑器\n\n特别说明:\n- rules 模板会自动包含当前 mcp 版本号信息(版本号:${ true ? "2.7.
|
|
218346
|
+
**CRITICAL**: This tool MUST be called FIRST when starting a new project.\n\n支持的模板:\n- react: React + CloudBase 全栈应用模板\n- vue: Vue + CloudBase 全栈应用模板\n- miniprogram: 微信小程序 + 云开发模板 \n- uniapp: UniApp + CloudBase 跨端应用模板\n- rules: 只包含AI编辑器配置文件(包含Cursor、WindSurf、CodeBuddy等所有主流编辑器配置),适合在已有项目中补充AI编辑器配置\n\n支持的IDE类型:\n- all: 下载所有IDE配置(默认)\n- cursor: Cursor AI编辑器\n- windsurf: WindSurf AI编辑器\n- codebuddy: CodeBuddy AI编辑器\n- claude-code: Claude Code AI编辑器\n- cline: Cline AI编辑器\n- gemini-cli: Gemini CLI\n- opencode: OpenCode AI编辑器\n- qwen-code: 通义灵码\n- baidu-comate: 百度Comate\n- openai-codex-cli: OpenAI Codex CLI\n- augment-code: Augment Code\n- github-copilot: GitHub Copilot\n- roocode: RooCode AI编辑器\n- tongyi-lingma: 通义灵码\n- trae: Trae AI编辑器\n- qoder: Qoder AI编辑器\n- antigravity: Google Antigravity AI编辑器\n- vscode: Visual Studio Code\n- kiro: Kiro AI编辑器\n- aider: Aider AI编辑器\n\n特别说明:\n- rules 模板会自动包含当前 mcp 版本号信息(版本号:${ true ? "2.7.3" : 0}),便于后续维护和版本追踪\n- 下载 rules 模板时,如果项目中已存在 README.md 文件,系统会自动保护该文件不被覆盖(除非设置 overwrite=true)`,
|
|
218299
218347
|
inputSchema: {
|
|
218300
218348
|
template: zod_1.z
|
|
218301
218349
|
.enum(["react", "vue", "miniprogram", "uniapp", "rules"])
|
|
@@ -220715,7 +220763,7 @@ function tryStat(path) {
|
|
|
220715
220763
|
"use strict";
|
|
220716
220764
|
|
|
220717
220765
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
220718
|
-
exports.RAW_IDE_FILE_MAPPINGS = exports.envManager = exports.createCloudBaseManagerWithOptions = exports.resetCloudBaseManagerCache = exports.getEnvId = exports.getCloudBaseManager = exports.shouldRegisterTool = exports.getCloudModeStatus = exports.enableCloudMode = exports.isCloudMode = exports.logout = exports.getLoginState = exports.warn = exports.error = exports.info = exports.reportToolCall = exports.reportToolkitLifecycle = exports.telemetryReporter = exports.StdioServerTransport = exports.getDefaultServer = exports.createCloudBaseMcpServer = void 0;
|
|
220766
|
+
exports.RAW_IDE_FILE_MAPPINGS = exports.simplifyEnvList = exports.envManager = exports.createCloudBaseManagerWithOptions = exports.resetCloudBaseManagerCache = exports.getEnvId = exports.getCloudBaseManager = exports.shouldRegisterTool = exports.getCloudModeStatus = exports.enableCloudMode = exports.isCloudMode = exports.logout = exports.getLoginState = exports.warn = exports.error = exports.info = exports.reportToolCall = exports.reportToolkitLifecycle = exports.telemetryReporter = exports.StdioServerTransport = exports.getDefaultServer = exports.createCloudBaseMcpServer = void 0;
|
|
220719
220767
|
exports.getInteractiveServerAsync = getInteractiveServerAsync;
|
|
220720
220768
|
// CloudBase MCP Server Library
|
|
220721
220769
|
var server_js_1 = __webpack_require__(31422);
|
|
@@ -220742,6 +220790,8 @@ Object.defineProperty(exports, "getEnvId", ({ enumerable: true, get: function ()
|
|
|
220742
220790
|
Object.defineProperty(exports, "resetCloudBaseManagerCache", ({ enumerable: true, get: function () { return cloudbase_manager_js_1.resetCloudBaseManagerCache; } }));
|
|
220743
220791
|
Object.defineProperty(exports, "createCloudBaseManagerWithOptions", ({ enumerable: true, get: function () { return cloudbase_manager_js_1.createCloudBaseManagerWithOptions; } }));
|
|
220744
220792
|
Object.defineProperty(exports, "envManager", ({ enumerable: true, get: function () { return cloudbase_manager_js_1.envManager; } }));
|
|
220793
|
+
var env_js_1 = __webpack_require__(622);
|
|
220794
|
+
Object.defineProperty(exports, "simplifyEnvList", ({ enumerable: true, get: function () { return env_js_1.simplifyEnvList; } }));
|
|
220745
220795
|
var setup_js_1 = __webpack_require__(76556);
|
|
220746
220796
|
Object.defineProperty(exports, "RAW_IDE_FILE_MAPPINGS", ({ enumerable: true, get: function () { return setup_js_1.RAW_IDE_FILE_MAPPINGS; } }));
|
|
220747
220797
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export type { UploadFileParams, ListFilesParams, DeleteFileParams, GetFileInfoPa
|
|
|
3
3
|
export { getLoginState, logout } from "./auth.js";
|
|
4
4
|
export { isCloudMode, enableCloudMode, getCloudModeStatus, shouldRegisterTool } from "./utils/cloud-mode.js";
|
|
5
5
|
export { getCloudBaseManager, getEnvId, resetCloudBaseManagerCache, createCloudBaseManagerWithOptions, envManager } from "./cloudbase-manager.js";
|
|
6
|
+
export { simplifyEnvList } from "./tools/env.js";
|
|
6
7
|
export { RAW_IDE_FILE_MAPPINGS } from "./tools/setup.js";
|
|
7
8
|
export type { InteractiveResult } from "./interactive-server.js";
|
|
8
9
|
/**
|
package/dist/index.js
CHANGED
|
@@ -30,6 +30,7 @@ import * as __WEBPACK_EXTERNAL_MODULE_winston__ from "winston";
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33
|
+
exports.simplifyEnvList = simplifyEnvList;
|
|
33
34
|
exports.registerEnvTools = registerEnvTools;
|
|
34
35
|
const zod_1 = __webpack_require__(2971);
|
|
35
36
|
const auth_js_1 = __webpack_require__(7291);
|
|
@@ -37,6 +38,36 @@ const cloudbase_manager_js_1 = __webpack_require__(3431);
|
|
|
37
38
|
const logger_js_1 = __webpack_require__(3039);
|
|
38
39
|
const interactive_js_1 = __webpack_require__(3461);
|
|
39
40
|
const rag_js_1 = __webpack_require__(4215);
|
|
41
|
+
/**
|
|
42
|
+
* Simplify environment list data by keeping only essential fields for AI assistant
|
|
43
|
+
* This reduces token consumption when returning environment lists via MCP tools
|
|
44
|
+
* @param envList - Full environment list from API
|
|
45
|
+
* @returns Simplified environment list with only essential fields
|
|
46
|
+
*/
|
|
47
|
+
function simplifyEnvList(envList) {
|
|
48
|
+
if (!Array.isArray(envList)) {
|
|
49
|
+
return envList;
|
|
50
|
+
}
|
|
51
|
+
return envList.map((env) => {
|
|
52
|
+
// Only keep essential fields that are useful for AI assistant
|
|
53
|
+
const simplified = {};
|
|
54
|
+
if (env.EnvId !== undefined)
|
|
55
|
+
simplified.EnvId = env.EnvId;
|
|
56
|
+
if (env.Alias !== undefined)
|
|
57
|
+
simplified.Alias = env.Alias;
|
|
58
|
+
if (env.Status !== undefined)
|
|
59
|
+
simplified.Status = env.Status;
|
|
60
|
+
if (env.EnvType !== undefined)
|
|
61
|
+
simplified.EnvType = env.EnvType;
|
|
62
|
+
if (env.Region !== undefined)
|
|
63
|
+
simplified.Region = env.Region;
|
|
64
|
+
if (env.PackageName !== undefined)
|
|
65
|
+
simplified.PackageName = env.PackageName;
|
|
66
|
+
if (env.IsDefault !== undefined)
|
|
67
|
+
simplified.IsDefault = env.IsDefault;
|
|
68
|
+
return simplified;
|
|
69
|
+
});
|
|
70
|
+
}
|
|
40
71
|
function registerEnvTools(server) {
|
|
41
72
|
// 获取 cloudBaseOptions,如果没有则为 undefined
|
|
42
73
|
const cloudBaseOptions = server.cloudBaseOptions;
|
|
@@ -236,6 +267,10 @@ function registerEnvTools(server) {
|
|
|
236
267
|
result = await cloudbaseList.env.listEnvs();
|
|
237
268
|
(0, cloudbase_manager_js_1.logCloudBaseResult)(server.logger, result);
|
|
238
269
|
}
|
|
270
|
+
// Apply field simplification for MCP tool response to reduce token consumption
|
|
271
|
+
if (result && Array.isArray(result.EnvList)) {
|
|
272
|
+
result.EnvList = simplifyEnvList(result.EnvList);
|
|
273
|
+
}
|
|
239
274
|
}
|
|
240
275
|
catch (error) {
|
|
241
276
|
(0, logger_js_1.debug)("获取环境列表时出错,尝试降级到 listEnvs():", error instanceof Error ? error : new Error(String(error)));
|
|
@@ -248,6 +283,10 @@ function registerEnvTools(server) {
|
|
|
248
283
|
});
|
|
249
284
|
result = await cloudbaseList.env.listEnvs();
|
|
250
285
|
(0, cloudbase_manager_js_1.logCloudBaseResult)(server.logger, result);
|
|
286
|
+
// Apply field simplification for fallback response as well
|
|
287
|
+
if (result && Array.isArray(result.EnvList)) {
|
|
288
|
+
result.EnvList = simplifyEnvList(result.EnvList);
|
|
289
|
+
}
|
|
251
290
|
}
|
|
252
291
|
catch (fallbackError) {
|
|
253
292
|
(0, logger_js_1.debug)("降级到 listEnvs() 也失败:", fallbackError instanceof Error ? fallbackError : new Error(String(fallbackError)));
|
|
@@ -517,7 +556,7 @@ ${envIdSection}
|
|
|
517
556
|
## 环境信息
|
|
518
557
|
- 操作系统: ${os_1.default.type()} ${os_1.default.release()}
|
|
519
558
|
- Node.js版本: ${process.version}
|
|
520
|
-
- MCP 版本:${process.env.npm_package_version || "2.7.
|
|
559
|
+
- MCP 版本:${process.env.npm_package_version || "2.7.3" || 0}
|
|
521
560
|
- 系统架构: ${os_1.default.arch()}
|
|
522
561
|
- 时间: ${new Date().toISOString()}
|
|
523
562
|
- 请求ID: ${requestId}
|
|
@@ -8647,7 +8686,7 @@ class TelemetryReporter {
|
|
|
8647
8686
|
const nodeVersion = process.version; // Node.js版本
|
|
8648
8687
|
const arch = os_1.default.arch(); // 系统架构
|
|
8649
8688
|
// 从构建时注入的版本号获取MCP版本信息
|
|
8650
|
-
const mcpVersion = process.env.npm_package_version || "2.7.
|
|
8689
|
+
const mcpVersion = process.env.npm_package_version || "2.7.3" || 0;
|
|
8651
8690
|
return {
|
|
8652
8691
|
userAgent: `${osType} ${osRelease} ${arch} ${nodeVersion} CloudBase-MCP/${mcpVersion}`,
|
|
8653
8692
|
deviceId: this.deviceId,
|
|
@@ -9703,6 +9742,7 @@ const IDE_TYPES = [
|
|
|
9703
9742
|
"vscode", // Visual Studio Code
|
|
9704
9743
|
"kiro", // Kiro AI编辑器
|
|
9705
9744
|
"aider", // Aider AI编辑器
|
|
9745
|
+
"iflow-cli", // iFlow CLI
|
|
9706
9746
|
];
|
|
9707
9747
|
// IDE到文件的映射关系
|
|
9708
9748
|
// 注意:以 "/" 结尾的路径表示目录,会包含该目录下的所有文件
|
|
@@ -9714,6 +9754,8 @@ exports.RAW_IDE_FILE_MAPPINGS = {
|
|
|
9714
9754
|
windsurf: [{ path: ".windsurf/rules/" }],
|
|
9715
9755
|
codebuddy: [
|
|
9716
9756
|
{ path: ".rules/cloudbase-rules.md" },
|
|
9757
|
+
{ path: ".rules/cloudbase-rules.mdc" },
|
|
9758
|
+
{ path: ".codebuddy/" },
|
|
9717
9759
|
{ path: "CODEBUDDY.md" },
|
|
9718
9760
|
{ path: ".mcp.json", isMcpConfig: true },
|
|
9719
9761
|
],
|
|
@@ -9760,6 +9802,10 @@ exports.RAW_IDE_FILE_MAPPINGS = {
|
|
|
9760
9802
|
{ path: ".kiro/steering/" },
|
|
9761
9803
|
],
|
|
9762
9804
|
aider: [{ path: "mcp.json", isMcpConfig: true }],
|
|
9805
|
+
"iflow-cli": [
|
|
9806
|
+
{ path: "IFLOW.md" },
|
|
9807
|
+
{ path: ".iflow/settings.json", isMcpConfig: true },
|
|
9808
|
+
],
|
|
9763
9809
|
};
|
|
9764
9810
|
const IDE_FILE_MAPPINGS = structuredClone(exports.RAW_IDE_FILE_MAPPINGS);
|
|
9765
9811
|
// 所有IDE配置文件的完整列表 - 通过IDE_FILE_MAPPINGS计算得出
|
|
@@ -9791,6 +9837,7 @@ const IDE_DESCRIPTIONS = {
|
|
|
9791
9837
|
vscode: "Visual Studio Code",
|
|
9792
9838
|
kiro: "Kiro AI编辑器",
|
|
9793
9839
|
aider: "Aider AI编辑器",
|
|
9840
|
+
"iflow-cli": "iFlow CLI",
|
|
9794
9841
|
};
|
|
9795
9842
|
// INTEGRATION_IDE 环境变量值到 IDE 类型的映射
|
|
9796
9843
|
const INTEGRATION_IDE_MAPPING = {
|
|
@@ -9815,6 +9862,7 @@ const INTEGRATION_IDE_MAPPING = {
|
|
|
9815
9862
|
Antigravity: "antigravity",
|
|
9816
9863
|
VSCode: "vscode",
|
|
9817
9864
|
Kiro: "kiro",
|
|
9865
|
+
iFlow: "iflow-cli",
|
|
9818
9866
|
};
|
|
9819
9867
|
// 根据 INTEGRATION_IDE 环境变量获取默认 IDE 类型
|
|
9820
9868
|
function getDefaultIDEFromEnv() {
|
|
@@ -10043,7 +10091,7 @@ function registerSetupTools(server) {
|
|
|
10043
10091
|
title: "下载项目模板",
|
|
10044
10092
|
description: `自动下载并部署CloudBase项目模板。⚠️ **MANDATORY FOR NEW PROJECTS** ⚠️
|
|
10045
10093
|
|
|
10046
|
-
**CRITICAL**: This tool MUST be called FIRST when starting a new project.\n\n支持的模板:\n- react: React + CloudBase 全栈应用模板\n- vue: Vue + CloudBase 全栈应用模板\n- miniprogram: 微信小程序 + 云开发模板 \n- uniapp: UniApp + CloudBase 跨端应用模板\n- rules: 只包含AI编辑器配置文件(包含Cursor、WindSurf、CodeBuddy等所有主流编辑器配置),适合在已有项目中补充AI编辑器配置\n\n支持的IDE类型:\n- all: 下载所有IDE配置(默认)\n- cursor: Cursor AI编辑器\n- windsurf: WindSurf AI编辑器\n- codebuddy: CodeBuddy AI编辑器\n- claude-code: Claude Code AI编辑器\n- cline: Cline AI编辑器\n- gemini-cli: Gemini CLI\n- opencode: OpenCode AI编辑器\n- qwen-code: 通义灵码\n- baidu-comate: 百度Comate\n- openai-codex-cli: OpenAI Codex CLI\n- augment-code: Augment Code\n- github-copilot: GitHub Copilot\n- roocode: RooCode AI编辑器\n- tongyi-lingma: 通义灵码\n- trae: Trae AI编辑器\n- qoder: Qoder AI编辑器\n- antigravity: Google Antigravity AI编辑器\n- vscode: Visual Studio Code\n- kiro: Kiro AI编辑器\n- aider: Aider AI编辑器\n\n特别说明:\n- rules 模板会自动包含当前 mcp 版本号信息(版本号:${ true ? "2.7.
|
|
10094
|
+
**CRITICAL**: This tool MUST be called FIRST when starting a new project.\n\n支持的模板:\n- react: React + CloudBase 全栈应用模板\n- vue: Vue + CloudBase 全栈应用模板\n- miniprogram: 微信小程序 + 云开发模板 \n- uniapp: UniApp + CloudBase 跨端应用模板\n- rules: 只包含AI编辑器配置文件(包含Cursor、WindSurf、CodeBuddy等所有主流编辑器配置),适合在已有项目中补充AI编辑器配置\n\n支持的IDE类型:\n- all: 下载所有IDE配置(默认)\n- cursor: Cursor AI编辑器\n- windsurf: WindSurf AI编辑器\n- codebuddy: CodeBuddy AI编辑器\n- claude-code: Claude Code AI编辑器\n- cline: Cline AI编辑器\n- gemini-cli: Gemini CLI\n- opencode: OpenCode AI编辑器\n- qwen-code: 通义灵码\n- baidu-comate: 百度Comate\n- openai-codex-cli: OpenAI Codex CLI\n- augment-code: Augment Code\n- github-copilot: GitHub Copilot\n- roocode: RooCode AI编辑器\n- tongyi-lingma: 通义灵码\n- trae: Trae AI编辑器\n- qoder: Qoder AI编辑器\n- antigravity: Google Antigravity AI编辑器\n- vscode: Visual Studio Code\n- kiro: Kiro AI编辑器\n- aider: Aider AI编辑器\n\n特别说明:\n- rules 模板会自动包含当前 mcp 版本号信息(版本号:${ true ? "2.7.3" : 0}),便于后续维护和版本追踪\n- 下载 rules 模板时,如果项目中已存在 README.md 文件,系统会自动保护该文件不被覆盖(除非设置 overwrite=true)`,
|
|
10047
10095
|
inputSchema: {
|
|
10048
10096
|
template: zod_1.z
|
|
10049
10097
|
.enum(["react", "vue", "miniprogram", "uniapp", "rules"])
|
|
@@ -13702,7 +13750,7 @@ var __webpack_exports__ = {};
|
|
|
13702
13750
|
var exports = __webpack_exports__;
|
|
13703
13751
|
|
|
13704
13752
|
Object.defineProperty(exports, "BJ", ({ value: true }));
|
|
13705
|
-
exports.pk = exports.vY = exports.q8 = exports.bM = exports.fW = exports._k = exports.T$ = exports.$n = exports.S = exports.bT = exports.ri = exports.BS = exports.R8 = exports.z3 = exports.pq = exports.R4 = exports.ps = exports.v7 = exports.S7 = exports.dD = exports.Gh = void 0;
|
|
13753
|
+
exports.pk = exports.ZS = exports.vY = exports.q8 = exports.bM = exports.fW = exports._k = exports.T$ = exports.$n = exports.S = exports.bT = exports.ri = exports.BS = exports.R8 = exports.z3 = exports.pq = exports.R4 = exports.ps = exports.v7 = exports.S7 = exports.dD = exports.Gh = void 0;
|
|
13706
13754
|
exports.SJ = getInteractiveServerAsync;
|
|
13707
13755
|
// CloudBase MCP Server Library
|
|
13708
13756
|
var server_js_1 = __webpack_require__(1422);
|
|
@@ -13729,6 +13777,8 @@ Object.defineProperty(exports, "fW", ({ enumerable: true, get: function () { ret
|
|
|
13729
13777
|
Object.defineProperty(exports, "bM", ({ enumerable: true, get: function () { return cloudbase_manager_js_1.resetCloudBaseManagerCache; } }));
|
|
13730
13778
|
Object.defineProperty(exports, "q8", ({ enumerable: true, get: function () { return cloudbase_manager_js_1.createCloudBaseManagerWithOptions; } }));
|
|
13731
13779
|
Object.defineProperty(exports, "vY", ({ enumerable: true, get: function () { return cloudbase_manager_js_1.envManager; } }));
|
|
13780
|
+
var env_js_1 = __webpack_require__(622);
|
|
13781
|
+
Object.defineProperty(exports, "ZS", ({ enumerable: true, get: function () { return env_js_1.simplifyEnvList; } }));
|
|
13732
13782
|
var setup_js_1 = __webpack_require__(6556);
|
|
13733
13783
|
Object.defineProperty(exports, "pk", ({ enumerable: true, get: function () { return setup_js_1.RAW_IDE_FILE_MAPPINGS; } }));
|
|
13734
13784
|
/**
|
|
@@ -13764,6 +13814,7 @@ const __webpack_exports__reportToolCall = __webpack_exports__.R4;
|
|
|
13764
13814
|
const __webpack_exports__reportToolkitLifecycle = __webpack_exports__.ps;
|
|
13765
13815
|
const __webpack_exports__resetCloudBaseManagerCache = __webpack_exports__.bM;
|
|
13766
13816
|
const __webpack_exports__shouldRegisterTool = __webpack_exports__.T$;
|
|
13817
|
+
const __webpack_exports__simplifyEnvList = __webpack_exports__.ZS;
|
|
13767
13818
|
const __webpack_exports__telemetryReporter = __webpack_exports__.v7;
|
|
13768
13819
|
const __webpack_exports__warn = __webpack_exports__.R8;
|
|
13769
|
-
export { __webpack_exports__RAW_IDE_FILE_MAPPINGS as RAW_IDE_FILE_MAPPINGS, __webpack_exports__StdioServerTransport as StdioServerTransport, __webpack_exports___esModule as __esModule, __webpack_exports__createCloudBaseManagerWithOptions as createCloudBaseManagerWithOptions, __webpack_exports__createCloudBaseMcpServer as createCloudBaseMcpServer, __webpack_exports__enableCloudMode as enableCloudMode, __webpack_exports__envManager as envManager, __webpack_exports__error as error, __webpack_exports__getCloudBaseManager as getCloudBaseManager, __webpack_exports__getCloudModeStatus as getCloudModeStatus, __webpack_exports__getDefaultServer as getDefaultServer, __webpack_exports__getEnvId as getEnvId, __webpack_exports__getInteractiveServerAsync as getInteractiveServerAsync, __webpack_exports__getLoginState as getLoginState, __webpack_exports__info as info, __webpack_exports__isCloudMode as isCloudMode, __webpack_exports__logout as logout, __webpack_exports__reportToolCall as reportToolCall, __webpack_exports__reportToolkitLifecycle as reportToolkitLifecycle, __webpack_exports__resetCloudBaseManagerCache as resetCloudBaseManagerCache, __webpack_exports__shouldRegisterTool as shouldRegisterTool, __webpack_exports__telemetryReporter as telemetryReporter, __webpack_exports__warn as warn };
|
|
13820
|
+
export { __webpack_exports__RAW_IDE_FILE_MAPPINGS as RAW_IDE_FILE_MAPPINGS, __webpack_exports__StdioServerTransport as StdioServerTransport, __webpack_exports___esModule as __esModule, __webpack_exports__createCloudBaseManagerWithOptions as createCloudBaseManagerWithOptions, __webpack_exports__createCloudBaseMcpServer as createCloudBaseMcpServer, __webpack_exports__enableCloudMode as enableCloudMode, __webpack_exports__envManager as envManager, __webpack_exports__error as error, __webpack_exports__getCloudBaseManager as getCloudBaseManager, __webpack_exports__getCloudModeStatus as getCloudModeStatus, __webpack_exports__getDefaultServer as getDefaultServer, __webpack_exports__getEnvId as getEnvId, __webpack_exports__getInteractiveServerAsync as getInteractiveServerAsync, __webpack_exports__getLoginState as getLoginState, __webpack_exports__info as info, __webpack_exports__isCloudMode as isCloudMode, __webpack_exports__logout as logout, __webpack_exports__reportToolCall as reportToolCall, __webpack_exports__reportToolkitLifecycle as reportToolkitLifecycle, __webpack_exports__resetCloudBaseManagerCache as resetCloudBaseManagerCache, __webpack_exports__shouldRegisterTool as shouldRegisterTool, __webpack_exports__simplifyEnvList as simplifyEnvList, __webpack_exports__telemetryReporter as telemetryReporter, __webpack_exports__warn as warn };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/cloudbase-mcp",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.3",
|
|
4
4
|
"description": "腾讯云开发 MCP Server,通过AI提示词和MCP协议+云开发,让开发更智能、更高效,当你在Cursor/ VSCode GitHub Copilot/WinSurf/CodeBuddy/Augment Code/Claude Code等AI编程工具里写代码时,它能自动帮你生成可直接部署的前后端应用+小程序,并一键发布到腾讯云开发 CloudBase。",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -27,6 +27,10 @@
|
|
|
27
27
|
"url": "https://github.com/TencentCloudBase/CloudBase-AI-ToolKit/issues",
|
|
28
28
|
"email": "bookerzhao@tencent.com"
|
|
29
29
|
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/TencentCloudBase/CloudBase-AI-ToolKit.git"
|
|
33
|
+
},
|
|
30
34
|
"scripts": {
|
|
31
35
|
"clean": "rm -rf dist",
|
|
32
36
|
"prebuild": "npm run clean",
|