unreal-engine-mcp-server 0.4.3 → 0.4.4

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/.env.production CHANGED
@@ -19,7 +19,7 @@ LOG_LEVEL=info
19
19
 
20
20
  # Server Settings
21
21
  SERVER_NAME=unreal-engine-mcp
22
- SERVER_VERSION=0.4.3
22
+ SERVER_VERSION=0.4.4
23
23
 
24
24
  # Connection Settings
25
25
  MAX_RETRY_ATTEMPTS=3
@@ -60,7 +60,8 @@ jobs:
60
60
 
61
61
  - name: Install MCP Publisher
62
62
  run: |
63
- curl -L "https://github.com/modelcontextprotocol/registry/releases/download/v1.0.0/mcp-publisher_1.0.0_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
63
+ curl -L "https://github.com/modelcontextprotocol/registry/releases/download/v1.1.0/mcp-publisher_1.1.0_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
64
+ chmod +x mcp-publisher
64
65
 
65
66
  - name: Login to MCP Registry
66
67
  run: ./mcp-publisher login github-oidc
package/dist/index.js CHANGED
@@ -62,7 +62,7 @@ const CONFIG = {
62
62
  RETRY_DELAY_MS: 2000,
63
63
  // Server info
64
64
  SERVER_NAME: 'unreal-engine-mcp',
65
- SERVER_VERSION: '0.4.3',
65
+ SERVER_VERSION: '0.4.4',
66
66
  // Monitoring
67
67
  HEALTH_CHECK_INTERVAL_MS: 30000 // 30 seconds
68
68
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unreal-engine-mcp-server",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "mcpName": "io.github.ChiR24/unreal-engine-mcp",
5
5
  "description": "Production-ready MCP server for Unreal Engine integration with 13 tools",
6
6
  "type": "module",
package/server.json CHANGED
@@ -2,13 +2,13 @@
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
3
3
  "name": "io.github.ChiR24/unreal-engine-mcp",
4
4
  "description": "MCP server for Unreal Engine 5 with 13 tools for game development automation.",
5
- "version": "0.4.3",
5
+ "version": "0.4.4",
6
6
  "packages": [
7
7
  {
8
8
  "registryType": "npm",
9
9
  "registryBaseUrl": "https://registry.npmjs.org",
10
10
  "identifier": "unreal-engine-mcp-server",
11
- "version": "0.4.3",
11
+ "version": "0.4.4",
12
12
  "transport": {
13
13
  "type": "stdio"
14
14
  },
package/src/index.ts CHANGED
@@ -87,7 +87,7 @@ const CONFIG = {
87
87
  RETRY_DELAY_MS: 2000,
88
88
  // Server info
89
89
  SERVER_NAME: 'unreal-engine-mcp',
90
- SERVER_VERSION: '0.4.3',
90
+ SERVER_VERSION: '0.4.4',
91
91
  // Monitoring
92
92
  HEALTH_CHECK_INTERVAL_MS: 30000 // 30 seconds
93
93
  };