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.
- package/dist/setup.js +2 -4
- 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
|
-
//
|
|
112
|
-
|
|
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) {
|