ue-mcp 0.6.0 → 0.6.1

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.
@@ -38,23 +38,28 @@ export declare const FlowConfigSchema: z.ZodObject<{
38
38
  steps: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodObject<{
39
39
  task: z.ZodOptional<z.ZodString>;
40
40
  flow: z.ZodOptional<z.ZodString>;
41
+ shell: z.ZodOptional<z.ZodString>;
41
42
  options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
42
43
  }, "strip", z.ZodTypeAny, {
43
44
  options?: Record<string, unknown> | undefined;
44
45
  task?: string | undefined;
45
46
  flow?: string | undefined;
47
+ shell?: string | undefined;
46
48
  }, {
47
49
  options?: Record<string, unknown> | undefined;
48
50
  task?: string | undefined;
49
51
  flow?: string | undefined;
52
+ shell?: string | undefined;
50
53
  }>, {
51
54
  options?: Record<string, unknown> | undefined;
52
55
  task?: string | undefined;
53
56
  flow?: string | undefined;
57
+ shell?: string | undefined;
54
58
  }, {
55
59
  options?: Record<string, unknown> | undefined;
56
60
  task?: string | undefined;
57
61
  flow?: string | undefined;
62
+ shell?: string | undefined;
58
63
  }>>;
59
64
  }, "strip", z.ZodTypeAny, {
60
65
  description: string;
@@ -62,6 +67,7 @@ export declare const FlowConfigSchema: z.ZodObject<{
62
67
  options?: Record<string, unknown> | undefined;
63
68
  task?: string | undefined;
64
69
  flow?: string | undefined;
70
+ shell?: string | undefined;
65
71
  }>;
66
72
  }, {
67
73
  description: string;
@@ -69,6 +75,7 @@ export declare const FlowConfigSchema: z.ZodObject<{
69
75
  options?: Record<string, unknown> | undefined;
70
76
  task?: string | undefined;
71
77
  flow?: string | undefined;
78
+ shell?: string | undefined;
72
79
  }>;
73
80
  }>>>;
74
81
  } & {
@@ -102,6 +109,7 @@ export declare const FlowConfigSchema: z.ZodObject<{
102
109
  options?: Record<string, unknown> | undefined;
103
110
  task?: string | undefined;
104
111
  flow?: string | undefined;
112
+ shell?: string | undefined;
105
113
  }>;
106
114
  }>;
107
115
  "ue-mcp"?: {
@@ -131,6 +139,7 @@ export declare const FlowConfigSchema: z.ZodObject<{
131
139
  options?: Record<string, unknown> | undefined;
132
140
  task?: string | undefined;
133
141
  flow?: string | undefined;
142
+ shell?: string | undefined;
134
143
  }>;
135
144
  }> | undefined;
136
145
  }>;
package/dist/index.js CHANGED
@@ -58,7 +58,7 @@ async function main() {
58
58
  const taskCount = registry.listRegistered().length;
59
59
  const server = new McpServer({
60
60
  name: "ue-mcp",
61
- version: "0.6.0",
61
+ version: "0.6.1",
62
62
  }, {
63
63
  instructions: SERVER_INSTRUCTIONS,
64
64
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ue-mcp",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Unreal Engine MCP server — 19 tools, 300+ actions for AI-driven editor control",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -64,7 +64,7 @@
64
64
  "prepublishOnly": "npx tsc && tsx scripts/generate-default-config.ts"
65
65
  },
66
66
  "dependencies": {
67
- "@db-lyon/flowkit": "^0.1.0",
67
+ "@db-lyon/flowkit": "^0.2.0",
68
68
  "@modelcontextprotocol/sdk": "^1.12.1",
69
69
  "ws": "^8.18.0",
70
70
  "zod": "^3.24.0"