You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Remove a single environment variable from a stack',
53
+
description:
54
+
'Remove a single environment variable from a stack. Services that relied on this variable will no longer receive it unless they have their own override.',
52
55
inputSchema: {
53
-
stackName: z.string(),
54
-
variableName: z.string(),
56
+
stackName: z.string().describe('Name of the stack'),
57
+
variableName: z.string().describe('Environment variable name to remove'),
{description: 'Check if a prerequisite is satisfied',inputSchema: {prerequisiteId: z.string()}},
32
+
{
33
+
description:
34
+
'Run a live check to determine if a prerequisite is satisfied on the host system (e.g. check Node.js version, verify env variable exists). Returns the check result and installation help if not satisfied.',
35
+
inputSchema: {prerequisiteId: z.string().describe('UUID of the prerequisite to check')},
description: 'Check if a GitHub repository is accessible via git ls-remote',
129
-
inputSchema: {repositoryId: z.string()},
135
+
description:
136
+
'Check if a GitHub repository is accessible by running git ls-remote against its URL. Useful for verifying credentials and network access before cloning.',
137
+
inputSchema: {repositoryId: z.string().describe('UUID of the repository to validate')},
0 commit comments