@mcp-use/cli 2.2.2-canary.0 → 2.2.2-canary.2
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/commands/deploy.d.ts.map +1 -1
- package/dist/index.js +51 -15
- package/dist/index.mjs +51 -15
- package/dist/utils/api.d.ts +2 -8
- package/dist/utils/api.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../src/commands/deploy.ts"],"names":[],"mappings":"AAcA,UAAU,aAAa;IACrB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;IAC5B,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AA2YD;;GAEG;AACH,wBAAsB,aAAa,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../src/commands/deploy.ts"],"names":[],"mappings":"AAcA,UAAU,aAAa;IACrB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;IAC5B,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AA2YD;;GAEG;AACH,wBAAsB,aAAa,CAAC,OAAO,EAAE,aAAa,GAAG,OAAO,CAAC,IAAI,CAAC,CA0PzE"}
|
package/dist/index.js
CHANGED
|
@@ -210,17 +210,46 @@ var McpUseAPI = class _McpUseAPI {
|
|
|
210
210
|
}
|
|
211
211
|
}
|
|
212
212
|
/**
|
|
213
|
-
*
|
|
213
|
+
* Create deployment with source code upload
|
|
214
214
|
*/
|
|
215
|
-
async
|
|
215
|
+
async createDeploymentWithUpload(request, filePath) {
|
|
216
216
|
const { readFile } = await import("fs/promises");
|
|
217
217
|
const { basename } = await import("path");
|
|
218
|
+
const { stat } = await import("fs/promises");
|
|
219
|
+
const stats = await stat(filePath);
|
|
220
|
+
const maxSize = 2 * 1024 * 1024;
|
|
221
|
+
if (stats.size > maxSize) {
|
|
222
|
+
throw new Error(
|
|
223
|
+
`File size (${(stats.size / 1024 / 1024).toFixed(2)}MB) exceeds maximum of 2MB`
|
|
224
|
+
);
|
|
225
|
+
}
|
|
218
226
|
const fileBuffer = await readFile(filePath);
|
|
219
227
|
const filename = basename(filePath);
|
|
220
228
|
const formData = new FormData();
|
|
221
229
|
const blob = new Blob([fileBuffer], { type: "application/gzip" });
|
|
222
|
-
formData.append("
|
|
223
|
-
|
|
230
|
+
formData.append("source_file", blob, filename);
|
|
231
|
+
formData.append("name", request.name);
|
|
232
|
+
formData.append("source_type", "upload");
|
|
233
|
+
if (request.source.type === "upload") {
|
|
234
|
+
formData.append("runtime", request.source.runtime || "node");
|
|
235
|
+
formData.append("port", String(request.source.port || 3e3));
|
|
236
|
+
if (request.source.startCommand) {
|
|
237
|
+
formData.append("startCommand", request.source.startCommand);
|
|
238
|
+
}
|
|
239
|
+
if (request.source.buildCommand) {
|
|
240
|
+
formData.append("buildCommand", request.source.buildCommand);
|
|
241
|
+
}
|
|
242
|
+
if (request.source.env && Object.keys(request.source.env).length > 0) {
|
|
243
|
+
formData.append("env", JSON.stringify(request.source.env));
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
if (request.customDomain) {
|
|
247
|
+
formData.append("customDomain", request.customDomain);
|
|
248
|
+
}
|
|
249
|
+
if (request.healthCheckPath) {
|
|
250
|
+
formData.append("healthCheckPath", request.healthCheckPath);
|
|
251
|
+
}
|
|
252
|
+
const url = `${this.baseUrl}/deployments`;
|
|
224
253
|
const headers = {};
|
|
225
254
|
if (this.apiKey) {
|
|
226
255
|
headers["x-api-key"] = this.apiKey;
|
|
@@ -232,7 +261,7 @@ var McpUseAPI = class _McpUseAPI {
|
|
|
232
261
|
});
|
|
233
262
|
if (!response.ok) {
|
|
234
263
|
const error = await response.text();
|
|
235
|
-
throw new Error(`
|
|
264
|
+
throw new Error(`Deployment failed: ${error}`);
|
|
236
265
|
}
|
|
237
266
|
return response.json();
|
|
238
267
|
}
|
|
@@ -861,7 +890,7 @@ async function displayDeploymentProgress(api, deployment) {
|
|
|
861
890
|
}
|
|
862
891
|
if (finalDeployment.status === "running") {
|
|
863
892
|
const mcpUrl = `https://${finalDeployment.domain}/mcp`;
|
|
864
|
-
const inspectorUrl = `https://inspector.mcp-use.com/
|
|
893
|
+
const inspectorUrl = `https://inspector.mcp-use.com/inspector?autoConnect=${encodeURIComponent(mcpUrl)}`;
|
|
865
894
|
console.log(import_chalk2.default.green.bold("\u2713 Deployment successful!\n"));
|
|
866
895
|
console.log(import_chalk2.default.white("\u{1F310} MCP Server URL:"));
|
|
867
896
|
console.log(import_chalk2.default.cyan.bold(` ${mcpUrl}
|
|
@@ -1074,18 +1103,20 @@ async function deployCommand(options) {
|
|
|
1074
1103
|
console.log(
|
|
1075
1104
|
import_chalk2.default.green("\u2713 Packaged: ") + import_chalk2.default.gray(formatFileSize(stats.size))
|
|
1076
1105
|
);
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1106
|
+
const maxSize = 2 * 1024 * 1024;
|
|
1107
|
+
if (stats.size > maxSize) {
|
|
1108
|
+
console.log(
|
|
1109
|
+
import_chalk2.default.red(
|
|
1110
|
+
`\u2717 File size (${formatFileSize(stats.size)}) exceeds maximum of 2MB`
|
|
1111
|
+
)
|
|
1112
|
+
);
|
|
1113
|
+
await import_node_fs2.promises.unlink(tarballPath);
|
|
1114
|
+
process.exit(1);
|
|
1115
|
+
}
|
|
1084
1116
|
const deploymentRequest = {
|
|
1085
1117
|
name: projectName,
|
|
1086
1118
|
source: {
|
|
1087
1119
|
type: "upload",
|
|
1088
|
-
uploadId: uploadResponse.uploadId,
|
|
1089
1120
|
runtime,
|
|
1090
1121
|
port,
|
|
1091
1122
|
buildCommand,
|
|
@@ -1094,7 +1125,12 @@ async function deployCommand(options) {
|
|
|
1094
1125
|
healthCheckPath: "/healthz"
|
|
1095
1126
|
};
|
|
1096
1127
|
console.log(import_chalk2.default.gray("Creating deployment..."));
|
|
1097
|
-
const
|
|
1128
|
+
const api = await McpUseAPI.create();
|
|
1129
|
+
const deployment = await api.createDeploymentWithUpload(
|
|
1130
|
+
deploymentRequest,
|
|
1131
|
+
tarballPath
|
|
1132
|
+
);
|
|
1133
|
+
await import_node_fs2.promises.unlink(tarballPath);
|
|
1098
1134
|
console.log(
|
|
1099
1135
|
import_chalk2.default.green("\u2713 Deployment created: ") + import_chalk2.default.gray(deployment.id)
|
|
1100
1136
|
);
|
package/dist/index.mjs
CHANGED
|
@@ -189,17 +189,46 @@ var McpUseAPI = class _McpUseAPI {
|
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
191
|
/**
|
|
192
|
-
*
|
|
192
|
+
* Create deployment with source code upload
|
|
193
193
|
*/
|
|
194
|
-
async
|
|
194
|
+
async createDeploymentWithUpload(request, filePath) {
|
|
195
195
|
const { readFile } = await import("fs/promises");
|
|
196
196
|
const { basename } = await import("path");
|
|
197
|
+
const { stat } = await import("fs/promises");
|
|
198
|
+
const stats = await stat(filePath);
|
|
199
|
+
const maxSize = 2 * 1024 * 1024;
|
|
200
|
+
if (stats.size > maxSize) {
|
|
201
|
+
throw new Error(
|
|
202
|
+
`File size (${(stats.size / 1024 / 1024).toFixed(2)}MB) exceeds maximum of 2MB`
|
|
203
|
+
);
|
|
204
|
+
}
|
|
197
205
|
const fileBuffer = await readFile(filePath);
|
|
198
206
|
const filename = basename(filePath);
|
|
199
207
|
const formData = new FormData();
|
|
200
208
|
const blob = new Blob([fileBuffer], { type: "application/gzip" });
|
|
201
|
-
formData.append("
|
|
202
|
-
|
|
209
|
+
formData.append("source_file", blob, filename);
|
|
210
|
+
formData.append("name", request.name);
|
|
211
|
+
formData.append("source_type", "upload");
|
|
212
|
+
if (request.source.type === "upload") {
|
|
213
|
+
formData.append("runtime", request.source.runtime || "node");
|
|
214
|
+
formData.append("port", String(request.source.port || 3e3));
|
|
215
|
+
if (request.source.startCommand) {
|
|
216
|
+
formData.append("startCommand", request.source.startCommand);
|
|
217
|
+
}
|
|
218
|
+
if (request.source.buildCommand) {
|
|
219
|
+
formData.append("buildCommand", request.source.buildCommand);
|
|
220
|
+
}
|
|
221
|
+
if (request.source.env && Object.keys(request.source.env).length > 0) {
|
|
222
|
+
formData.append("env", JSON.stringify(request.source.env));
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
if (request.customDomain) {
|
|
226
|
+
formData.append("customDomain", request.customDomain);
|
|
227
|
+
}
|
|
228
|
+
if (request.healthCheckPath) {
|
|
229
|
+
formData.append("healthCheckPath", request.healthCheckPath);
|
|
230
|
+
}
|
|
231
|
+
const url = `${this.baseUrl}/deployments`;
|
|
203
232
|
const headers = {};
|
|
204
233
|
if (this.apiKey) {
|
|
205
234
|
headers["x-api-key"] = this.apiKey;
|
|
@@ -211,7 +240,7 @@ var McpUseAPI = class _McpUseAPI {
|
|
|
211
240
|
});
|
|
212
241
|
if (!response.ok) {
|
|
213
242
|
const error = await response.text();
|
|
214
|
-
throw new Error(`
|
|
243
|
+
throw new Error(`Deployment failed: ${error}`);
|
|
215
244
|
}
|
|
216
245
|
return response.json();
|
|
217
246
|
}
|
|
@@ -840,7 +869,7 @@ async function displayDeploymentProgress(api, deployment) {
|
|
|
840
869
|
}
|
|
841
870
|
if (finalDeployment.status === "running") {
|
|
842
871
|
const mcpUrl = `https://${finalDeployment.domain}/mcp`;
|
|
843
|
-
const inspectorUrl = `https://inspector.mcp-use.com/
|
|
872
|
+
const inspectorUrl = `https://inspector.mcp-use.com/inspector?autoConnect=${encodeURIComponent(mcpUrl)}`;
|
|
844
873
|
console.log(chalk2.green.bold("\u2713 Deployment successful!\n"));
|
|
845
874
|
console.log(chalk2.white("\u{1F310} MCP Server URL:"));
|
|
846
875
|
console.log(chalk2.cyan.bold(` ${mcpUrl}
|
|
@@ -1053,18 +1082,20 @@ async function deployCommand(options) {
|
|
|
1053
1082
|
console.log(
|
|
1054
1083
|
chalk2.green("\u2713 Packaged: ") + chalk2.gray(formatFileSize(stats.size))
|
|
1055
1084
|
);
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1085
|
+
const maxSize = 2 * 1024 * 1024;
|
|
1086
|
+
if (stats.size > maxSize) {
|
|
1087
|
+
console.log(
|
|
1088
|
+
chalk2.red(
|
|
1089
|
+
`\u2717 File size (${formatFileSize(stats.size)}) exceeds maximum of 2MB`
|
|
1090
|
+
)
|
|
1091
|
+
);
|
|
1092
|
+
await fs2.unlink(tarballPath);
|
|
1093
|
+
process.exit(1);
|
|
1094
|
+
}
|
|
1063
1095
|
const deploymentRequest = {
|
|
1064
1096
|
name: projectName,
|
|
1065
1097
|
source: {
|
|
1066
1098
|
type: "upload",
|
|
1067
|
-
uploadId: uploadResponse.uploadId,
|
|
1068
1099
|
runtime,
|
|
1069
1100
|
port,
|
|
1070
1101
|
buildCommand,
|
|
@@ -1073,7 +1104,12 @@ async function deployCommand(options) {
|
|
|
1073
1104
|
healthCheckPath: "/healthz"
|
|
1074
1105
|
};
|
|
1075
1106
|
console.log(chalk2.gray("Creating deployment..."));
|
|
1076
|
-
const
|
|
1107
|
+
const api = await McpUseAPI.create();
|
|
1108
|
+
const deployment = await api.createDeploymentWithUpload(
|
|
1109
|
+
deploymentRequest,
|
|
1110
|
+
tarballPath
|
|
1111
|
+
);
|
|
1112
|
+
await fs2.unlink(tarballPath);
|
|
1077
1113
|
console.log(
|
|
1078
1114
|
chalk2.green("\u2713 Deployment created: ") + chalk2.gray(deployment.id)
|
|
1079
1115
|
);
|
package/dist/utils/api.d.ts
CHANGED
|
@@ -24,7 +24,6 @@ export interface GitHubSource {
|
|
|
24
24
|
}
|
|
25
25
|
export interface UploadSource {
|
|
26
26
|
type: "upload";
|
|
27
|
-
uploadId: string;
|
|
28
27
|
startCommand?: string;
|
|
29
28
|
runtime?: "node" | "python";
|
|
30
29
|
port?: number;
|
|
@@ -61,11 +60,6 @@ export interface Deployment {
|
|
|
61
60
|
gitBranch?: string;
|
|
62
61
|
gitCommitMessage?: string;
|
|
63
62
|
}
|
|
64
|
-
export interface UploadResponse {
|
|
65
|
-
uploadId: string;
|
|
66
|
-
size: number;
|
|
67
|
-
filename: string;
|
|
68
|
-
}
|
|
69
63
|
/**
|
|
70
64
|
* API client for mcp-use cloud
|
|
71
65
|
*/
|
|
@@ -102,8 +96,8 @@ export declare class McpUseAPI {
|
|
|
102
96
|
*/
|
|
103
97
|
streamDeploymentLogs(deploymentId: string): AsyncGenerator<string, void, unknown>;
|
|
104
98
|
/**
|
|
105
|
-
*
|
|
99
|
+
* Create deployment with source code upload
|
|
106
100
|
*/
|
|
107
|
-
|
|
101
|
+
createDeploymentWithUpload(request: CreateDeploymentRequest, filePath: string): Promise<Deployment>;
|
|
108
102
|
}
|
|
109
103
|
//# sourceMappingURL=api.d.ts.map
|
package/dist/utils/api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/utils/api.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,oBAAoB;IACnC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,gBAAgB;IAC/B,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,QAAQ,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,QAAQ,CAAC;IACf,
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/utils/api.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-use/cli",
|
|
3
|
-
"version": "2.2.2-canary.
|
|
3
|
+
"version": "2.2.2-canary.2",
|
|
4
4
|
"description": "Build tool for MCP UI widgets - bundles React components into standalone HTML pages for Model Context Protocol servers",
|
|
5
5
|
"author": "mcp-use, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"tsx": "^4.0.0",
|
|
45
45
|
"vite": "^6.0.0",
|
|
46
46
|
"ws": "^8.18.0",
|
|
47
|
-
"@mcp-use/inspector": "0.5.2-canary.
|
|
48
|
-
"mcp-use": "1.3.2-canary.
|
|
47
|
+
"@mcp-use/inspector": "0.5.2-canary.2",
|
|
48
|
+
"mcp-use": "1.3.2-canary.2"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/node": "^20.0.0",
|