ultimate-unreal-engine-mcp 0.1.5 → 0.1.6

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.
Files changed (2) hide show
  1. package/dist/setup.js +2 -4
  2. package/package.json +1 -1
package/dist/setup.js CHANGED
@@ -108,10 +108,8 @@ function configureClient(client, port, projectRoot) {
108
108
  command: 'npx',
109
109
  args: ['-y', 'ultimate-unreal-engine-mcp'],
110
110
  };
111
- // Claude Code requires "type": "stdio" in each entry
112
- if (client === 'claude-code') {
113
- serverEntry['type'] = 'stdio';
114
- }
111
+ // All clients need "type": "stdio" for proper MCP server detection
112
+ serverEntry['type'] = 'stdio';
115
113
  // Only add env if project root is specified or port is non-default
116
114
  const envBlock = {};
117
115
  if (projectRoot) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-unreal-engine-mcp",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "MCP server giving AI assistants full access to Unreal Engine 5.7 projects",
5
5
  "type": "module",
6
6
  "engines": {