@mcp-use/cli 3.1.5-canary.3 → 3.2.0-canary.10
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/client-auth.d.ts +4 -0
- package/dist/commands/client-auth.d.ts.map +1 -0
- package/dist/commands/client.d.ts +40 -69
- package/dist/commands/client.d.ts.map +1 -1
- package/dist/commands/deployments.d.ts.map +1 -1
- package/dist/commands/screenshot.d.ts +80 -0
- package/dist/commands/screenshot.d.ts.map +1 -0
- package/dist/commands/servers.d.ts.map +1 -1
- package/dist/commands/skills.d.ts.map +1 -1
- package/dist/index.cjs +2049 -540
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2011 -497
- package/dist/index.js.map +1 -1
- package/dist/utils/cdp-screenshot.d.ts +44 -0
- package/dist/utils/cdp-screenshot.d.ts.map +1 -0
- package/dist/utils/chrome-path.d.ts +14 -0
- package/dist/utils/chrome-path.d.ts.map +1 -0
- package/dist/utils/format.d.ts +36 -5
- package/dist/utils/format.d.ts.map +1 -1
- package/dist/utils/oauth.d.ts +22 -0
- package/dist/utils/oauth.d.ts.map +1 -0
- package/dist/utils/parse-args.d.ts +27 -0
- package/dist/utils/parse-args.d.ts.map +1 -0
- package/dist/utils/session-storage.d.ts +13 -33
- package/dist/utils/session-storage.d.ts.map +1 -1
- package/dist/utils/session.d.ts +39 -0
- package/dist/utils/session.d.ts.map +1 -0
- package/package.json +5 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client-auth.d.ts","sourceRoot":"","sources":["../../src/commands/client-auth.ts"],"names":[],"mappings":"AAuDA,wBAAsB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAwBnE;AAED,wBAAsB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CA2BpE;AAED,wBAAsB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAcnE"}
|
|
@@ -1,92 +1,63 @@
|
|
|
1
1
|
import { Command } from "commander";
|
|
2
|
-
export declare function connectCommand(urlOrCommand: string, options: {
|
|
3
|
-
name?: string;
|
|
4
|
-
stdio?: boolean;
|
|
5
|
-
auth?: string;
|
|
6
|
-
}): Promise<void>;
|
|
7
2
|
/**
|
|
8
|
-
*
|
|
3
|
+
* Reserved top-level subcommands under `mcp-use client`. Any other token in
|
|
4
|
+
* that position is treated as a client name and routed via
|
|
5
|
+
* `createPerClientCommand`. Keep this in sync with the subcommands registered
|
|
6
|
+
* in `createClientCommand` below, plus commander's built-in help tokens.
|
|
9
7
|
*/
|
|
10
|
-
export declare
|
|
11
|
-
all?: boolean;
|
|
12
|
-
}): Promise<void>;
|
|
8
|
+
export declare const RESERVED_CLIENT_SUBCOMMANDS: Set<string>;
|
|
13
9
|
/**
|
|
14
|
-
*
|
|
10
|
+
* Per-client scope tokens that live under `mcp-use client <name> ...`. When a
|
|
11
|
+
* user types one of these in the client-name slot (e.g.
|
|
12
|
+
* `mcp-use client tools call foo`), they almost certainly forgot the client
|
|
13
|
+
* name — route to a tailored error instead of "unknown command".
|
|
15
14
|
*/
|
|
16
|
-
export declare
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
* List tools command
|
|
23
|
-
*/
|
|
24
|
-
export declare function listToolsCommand(options: {
|
|
25
|
-
session?: string;
|
|
26
|
-
json?: boolean;
|
|
15
|
+
export declare const PER_CLIENT_SCOPES: Set<string>;
|
|
16
|
+
export declare function connectCommand(name: string | undefined, urlOrCommand: string | undefined, options: {
|
|
17
|
+
stdio?: boolean;
|
|
18
|
+
auth?: string;
|
|
19
|
+
oauth?: boolean;
|
|
20
|
+
authTimeout?: string;
|
|
27
21
|
}): Promise<void>;
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
export declare function
|
|
32
|
-
|
|
22
|
+
export declare function disconnectCommand(name: string): Promise<void>;
|
|
23
|
+
export declare function removeClientCommand(name: string): Promise<void>;
|
|
24
|
+
export declare function listClientsCommand(): Promise<void>;
|
|
25
|
+
export declare function listToolsCommand(name: string, options: {
|
|
26
|
+
json?: boolean;
|
|
33
27
|
}): Promise<void>;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
*/
|
|
37
|
-
export declare function callToolCommand(toolName: string, argsJson?: string, options?: {
|
|
38
|
-
session?: string;
|
|
28
|
+
export declare function describeToolCommand(name: string, toolName: string): Promise<void>;
|
|
29
|
+
export declare function callToolCommand(name: string, toolName: string, argsList?: string[], options?: {
|
|
39
30
|
timeout?: number;
|
|
40
31
|
json?: boolean;
|
|
32
|
+
screenshot?: boolean;
|
|
33
|
+
screenshotOutput?: string;
|
|
41
34
|
}): Promise<void>;
|
|
42
|
-
|
|
43
|
-
* List resources command
|
|
44
|
-
*/
|
|
45
|
-
export declare function listResourcesCommand(options: {
|
|
46
|
-
session?: string;
|
|
35
|
+
export declare function listResourcesCommand(name: string, options: {
|
|
47
36
|
json?: boolean;
|
|
48
37
|
}): Promise<void>;
|
|
49
|
-
|
|
50
|
-
* Read resource command
|
|
51
|
-
*/
|
|
52
|
-
export declare function readResourceCommand(uri: string, options: {
|
|
53
|
-
session?: string;
|
|
38
|
+
export declare function readResourceCommand(name: string, uri: string, options: {
|
|
54
39
|
json?: boolean;
|
|
55
40
|
}): Promise<void>;
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
export declare function subscribeResourceCommand(uri: string, options: {
|
|
60
|
-
session?: string;
|
|
61
|
-
}): Promise<void>;
|
|
62
|
-
/**
|
|
63
|
-
* Unsubscribe from resource command
|
|
64
|
-
*/
|
|
65
|
-
export declare function unsubscribeResourceCommand(uri: string, options: {
|
|
66
|
-
session?: string;
|
|
67
|
-
}): Promise<void>;
|
|
68
|
-
/**
|
|
69
|
-
* List prompts command
|
|
70
|
-
*/
|
|
71
|
-
export declare function listPromptsCommand(options: {
|
|
72
|
-
session?: string;
|
|
41
|
+
export declare function subscribeResourceCommand(name: string, uri: string): Promise<void>;
|
|
42
|
+
export declare function unsubscribeResourceCommand(name: string, uri: string): Promise<void>;
|
|
43
|
+
export declare function listPromptsCommand(name: string, options: {
|
|
73
44
|
json?: boolean;
|
|
74
45
|
}): Promise<void>;
|
|
75
|
-
|
|
76
|
-
* Get prompt command
|
|
77
|
-
*/
|
|
78
|
-
export declare function getPromptCommand(promptName: string, argsJson?: string, options?: {
|
|
79
|
-
session?: string;
|
|
46
|
+
export declare function getPromptCommand(name: string, promptName: string, argsList?: string[], options?: {
|
|
80
47
|
json?: boolean;
|
|
81
48
|
}): Promise<void>;
|
|
49
|
+
export declare function interactiveCommand(name: string): Promise<void>;
|
|
82
50
|
/**
|
|
83
|
-
*
|
|
51
|
+
* Top-level `client` command. Exposes only commands that do not target an
|
|
52
|
+
* existing saved server: `connect` (which creates one) and `list`. Per-server
|
|
53
|
+
* operations live under `createPerClientCommand(<name>)` and are routed by
|
|
54
|
+
* `index.ts` based on the positional after `client`.
|
|
84
55
|
*/
|
|
85
|
-
export declare function
|
|
86
|
-
session?: string;
|
|
87
|
-
}): Promise<void>;
|
|
56
|
+
export declare function createClientCommand(): Command;
|
|
88
57
|
/**
|
|
89
|
-
*
|
|
58
|
+
* Build the per-server command subtree for a given saved-server name. The
|
|
59
|
+
* name is captured in each action closure so subcommand definitions stay
|
|
60
|
+
* free of an extra positional argument.
|
|
90
61
|
*/
|
|
91
|
-
export declare function
|
|
62
|
+
export declare function createPerClientCommand(name: string): Command;
|
|
92
63
|
//# sourceMappingURL=client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/commands/client.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/commands/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deployments.d.ts","sourceRoot":"","sources":["../../src/commands/deployments.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA4gBpC,wBAAgB,wBAAwB,IAAI,OAAO,
|
|
1
|
+
{"version":3,"file":"deployments.d.ts","sourceRoot":"","sources":["../../src/commands/deployments.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA4gBpC,wBAAgB,wBAAwB,IAAI,OAAO,CAyDlD"}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { Command } from "commander";
|
|
2
|
+
import type { MCPSession } from "mcp-use/client";
|
|
3
|
+
interface ScreenshotOptions {
|
|
4
|
+
tool?: string;
|
|
5
|
+
width: string;
|
|
6
|
+
height: string;
|
|
7
|
+
inspector?: string;
|
|
8
|
+
mcp?: string;
|
|
9
|
+
session?: string;
|
|
10
|
+
theme: "light" | "dark";
|
|
11
|
+
output?: string;
|
|
12
|
+
waitFor?: string;
|
|
13
|
+
delay?: string;
|
|
14
|
+
quiet?: boolean;
|
|
15
|
+
timeout: string;
|
|
16
|
+
cdpUrl?: string;
|
|
17
|
+
header?: string[];
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Curl-style `Key: Value` parser. Splits on the first `:` so values may
|
|
21
|
+
* contain colons, and trims both sides so `Authorization:Bearer xyz` and
|
|
22
|
+
* `Authorization: Bearer xyz` are equivalent.
|
|
23
|
+
*/
|
|
24
|
+
export declare function parseHeaderArg(raw: string): [string, string];
|
|
25
|
+
export declare function parseHeaderArgs(args: string[]): Record<string, string>;
|
|
26
|
+
/**
|
|
27
|
+
* Inspect a tool's `_meta` for the UI resource URI it renders, if any. Falls back
|
|
28
|
+
* to the OpenAI Apps `openai/outputTemplate` key for cross-ecosystem compatibility.
|
|
29
|
+
*/
|
|
30
|
+
export declare function detectToolResourceUri(tool: {
|
|
31
|
+
_meta?: Record<string, unknown>;
|
|
32
|
+
} | undefined | null): string | null;
|
|
33
|
+
export interface CaptureToolScreenshotInputs {
|
|
34
|
+
session: MCPSession;
|
|
35
|
+
toolName: string;
|
|
36
|
+
toolArgs: Record<string, unknown>;
|
|
37
|
+
toolOutput: unknown;
|
|
38
|
+
resourceUri: string;
|
|
39
|
+
}
|
|
40
|
+
export interface CaptureToolScreenshotOptions {
|
|
41
|
+
width?: number;
|
|
42
|
+
height?: number;
|
|
43
|
+
theme?: "light" | "dark";
|
|
44
|
+
output?: string;
|
|
45
|
+
waitFor?: string;
|
|
46
|
+
delayMs?: number;
|
|
47
|
+
timeoutMs?: number;
|
|
48
|
+
inspector?: string;
|
|
49
|
+
quiet?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Pre-existing CDP WebSocket URL. When set, the screenshot is captured via
|
|
52
|
+
* the remote browser instead of spawning a local Chrome. The inspector URL
|
|
53
|
+
* must be reachable from that remote browser.
|
|
54
|
+
*/
|
|
55
|
+
cdpUrl?: string;
|
|
56
|
+
}
|
|
57
|
+
export interface CaptureToolScreenshotResult {
|
|
58
|
+
outputPath: string;
|
|
59
|
+
width: number;
|
|
60
|
+
height: number;
|
|
61
|
+
view: string;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* End-to-end screenshot pipeline for a tool whose UI resource has already been
|
|
65
|
+
* resolved. Reuses the caller's existing tool result so we don't re-invoke the
|
|
66
|
+
* tool, ensures a dev server is running (spawning one if needed), reads the UI
|
|
67
|
+
* resource, and captures via CDP. Cleans up any spawned dev server before
|
|
68
|
+
* returning, even on failure.
|
|
69
|
+
*/
|
|
70
|
+
export declare function captureToolScreenshot(inputs: CaptureToolScreenshotInputs, options?: CaptureToolScreenshotOptions): Promise<CaptureToolScreenshotResult>;
|
|
71
|
+
/**
|
|
72
|
+
* Returns a filesystem-safe timestamp string: YYYY-MM-DD_HH-mm-ss
|
|
73
|
+
*/
|
|
74
|
+
export declare function timestampSuffix(date?: Date): string;
|
|
75
|
+
export declare function extractViewName(resourceUri: string): string;
|
|
76
|
+
export declare function parseDimension(raw: string, name: string): number;
|
|
77
|
+
export declare function screenshotCommand(options: ScreenshotOptions, argsList: string[] | undefined): Promise<void>;
|
|
78
|
+
export declare function createScreenshotCommand(): Command;
|
|
79
|
+
export {};
|
|
80
|
+
//# sourceMappingURL=screenshot.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"screenshot.d.ts","sourceRoot":"","sources":["../../src/commands/screenshot.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAkBjD,UAAU,iBAAiB;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,OAAO,GAAG,MAAM,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACnB;AAED;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAa5D;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAOtE;AAaD;;;GAGG;AACH,wBAAgB,qBAAqB,CACnC,IAAI,EAAE;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CAAE,GAAG,SAAS,GAAG,IAAI,GAC3D,MAAM,GAAG,IAAI,CAUf;AAED,MAAM,WAAW,2BAA2B;IAC1C,OAAO,EAAE,UAAU,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAClC,UAAU,EAAE,OAAO,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,4BAA4B;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IACzB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,2BAA2B;IAC1C,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;;;;;GAMG;AACH,wBAAsB,qBAAqB,CACzC,MAAM,EAAE,2BAA2B,EACnC,OAAO,GAAE,4BAAiC,GACzC,OAAO,CAAC,2BAA2B,CAAC,CA0DtC;AAqLD;;GAEG;AACH,wBAAgB,eAAe,CAAC,IAAI,OAAa,GAAG,MAAM,CAKzD;AAED,wBAAgB,eAAe,CAAC,WAAW,EAAE,MAAM,GAAG,MAAM,CAK3D;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAMhE;AA8CD,wBAAsB,iBAAiB,CACrC,OAAO,EAAE,iBAAiB,EAC1B,QAAQ,EAAE,MAAM,EAAE,GAAG,SAAS,GAC7B,OAAO,CAAC,IAAI,CAAC,CA0If;AAED,wBAAgB,uBAAuB,IAAI,OAAO,CA4DjD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"servers.d.ts","sourceRoot":"","sources":["../../src/commands/servers.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA8TpC,wBAAgB,oBAAoB,IAAI,OAAO,
|
|
1
|
+
{"version":3,"file":"servers.d.ts","sourceRoot":"","sources":["../../src/commands/servers.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA8TpC,wBAAgB,oBAAoB,IAAI,OAAO,CAoC9C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skills.d.ts","sourceRoot":"","sources":["../../src/commands/skills.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA2GpC,wBAAgB,mBAAmB,IAAI,OAAO,
|
|
1
|
+
{"version":3,"file":"skills.d.ts","sourceRoot":"","sources":["../../src/commands/skills.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA2GpC,wBAAgB,mBAAmB,IAAI,OAAO,CA8D7C"}
|