We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6b672a commit ab59db8Copy full SHA for ab59db8
1 file changed
packages/cli-v3/src/commands/install-mcp.ts
@@ -15,7 +15,6 @@ import {
15
} from "../utilities/fileSystem.js";
16
import { printStandloneInitialBanner } from "../utilities/initialBanner.js";
17
import { VERSION } from "../version.js";
18
-import { spinner } from "../utilities/windows.js";
19
20
const cliVersion = VERSION as string;
21
const cliTag = cliVersion.includes("v4-beta") ? "v4-beta" : "latest";
@@ -113,7 +112,7 @@ type ResolvedClients = SupportedClients | "unsupported";
113
112
114
const InstallMcpCommandOptions = z.object({
115
projectRef: z.string().optional(),
116
- tag: z.string().default(cliVersion),
+ tag: z.string().default(cliTag),
117
devOnly: z.boolean().optional(),
118
yolo: z.boolean().default(false),
119
scope: z.enum(scopes).optional(),
0 commit comments