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
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "default",
3
-
"version": "1.12.0",
3
+
"version": "1.13.0-beta.3",
4
4
"description": "Default plugin for Codify - provides 50+ declarative resources for managing development tools and system configuration across macOS and Linux",
name: z.string().describe('Unique name for this MCP server'),
5
5
type: z.literal('stdio'),
6
6
command: z.string().describe('Executable or command used to launch the MCP server process'),
7
-
args: z.array(z.string()).optional().describe('Arguments passed to the command'),
7
+
args: z.array(z.string()).optional().describe('Arguments passed to the command. Shell variable expansion (e.g. $HOME) does not occur — use absolute paths instead.'),
8
8
env: z.record(z.string(),z.string()).optional().describe('Static environment variables passed to the server process'),
9
9
envVars: z.array(z.string()).optional().describe('Names of environment variables forwarded from the Codex process environment'),
10
10
cwd: z.string().optional().describe('Working directory for the server process'),
0 commit comments