genexus-mcp 1.1.0

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 (34) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +192 -0
  3. package/bin/run.js +45 -0
  4. package/package.json +25 -0
  5. package/publish/GxMcp.Gateway.deps.json +125 -0
  6. package/publish/GxMcp.Gateway.dll +0 -0
  7. package/publish/GxMcp.Gateway.exe +0 -0
  8. package/publish/GxMcp.Gateway.pdb +0 -0
  9. package/publish/GxMcp.Gateway.runtimeconfig.json +20 -0
  10. package/publish/Newtonsoft.Json.dll +0 -0
  11. package/publish/System.CodeDom.dll +0 -0
  12. package/publish/System.Management.dll +0 -0
  13. package/publish/System.Security.Permissions.dll +0 -0
  14. package/publish/System.Windows.Extensions.dll +0 -0
  15. package/publish/config.json +19 -0
  16. package/publish/gateway_debug.log +5938 -0
  17. package/publish/gateway_debug.prev.log +5 -0
  18. package/publish/gateway_panic.log +16 -0
  19. package/publish/runtimes/win/lib/net8.0/System.Management.dll +0 -0
  20. package/publish/runtimes/win/lib/net8.0/System.Windows.Extensions.dll +0 -0
  21. package/publish/start_mcp.bat +22 -0
  22. package/publish/tool_definitions.json +899 -0
  23. package/publish/web.config +12 -0
  24. package/publish/worker/DataTracing.log +0 -0
  25. package/publish/worker/GxMcp.Worker.exe +0 -0
  26. package/publish/worker/GxMcp.Worker.exe.config +76 -0
  27. package/publish/worker/GxMcp.Worker.pdb +0 -0
  28. package/publish/worker/Newtonsoft.Json.dll +0 -0
  29. package/publish/worker/ProcArqCandUniGra.md +160 -0
  30. package/publish/worker/cache/search_index.json +1 -0
  31. package/publish/worker/search_index.json +1 -0
  32. package/publish/worker/worker_debug.log +84 -0
  33. package/publish/worker/worker_debug.prev.log +32 -0
  34. package/publish/worker/worker_entlib.log +123 -0
@@ -0,0 +1,5 @@
1
+ [2026-03-23 16:35:09.918] [Gateway] Killing orphan GxMcp.Gateway (PID 14032)...
2
+ [2026-03-23 16:35:10.205] === Gateway starting (Stdio Mode) ===
3
+ [2026-03-23 16:35:11.765] [Gateway] Worker started successfully (Attempt 1).
4
+ [2026-03-23 16:35:13.567] [Gateway] Worker process EXITED with code -1.
5
+ [2026-03-23 16:35:13.567] Worker Process Exited. Notifying all pending requests...
@@ -0,0 +1,16 @@
1
+ [01/04/2026 08:17:04] FATAL UNHANDLED: System.IO.FileNotFoundException: GX_CONFIG_PATH points to a missing config.json: C:\Projetos\GenexusMCP\config.json
2
+ at GxMcp.Gateway.Configuration.Load() in C:\Projetos\GenexusMCP\src\GxMcp.Gateway\Configuration.cs:line 38
3
+ at GxMcp.Gateway.Program.Main(String[] args) in C:\Projetos\GenexusMCP\src\GxMcp.Gateway\Program.cs:line 164
4
+ at GxMcp.Gateway.Program.<Main>(String[] args)
5
+ [01/04/2026 08:17:21] FATAL UNHANDLED: System.IO.FileNotFoundException: GX_CONFIG_PATH points to a missing config.json: C:\Projetos\GenexusMCP\config.json
6
+ at GxMcp.Gateway.Configuration.Load() in C:\Projetos\GenexusMCP\src\GxMcp.Gateway\Configuration.cs:line 38
7
+ at GxMcp.Gateway.Program.Main(String[] args) in C:\Projetos\GenexusMCP\src\GxMcp.Gateway\Program.cs:line 164
8
+ at GxMcp.Gateway.Program.<Main>(String[] args)
9
+ [01/04/2026 08:20:26] FATAL UNHANDLED: System.IO.FileNotFoundException: GX_CONFIG_PATH points to a missing config.json: C:\Projetos\GenexusMCP\config.json
10
+ at GxMcp.Gateway.Configuration.Load() in C:\Projetos\GenexusMCP\src\GxMcp.Gateway\Configuration.cs:line 38
11
+ at GxMcp.Gateway.Program.Main(String[] args) in C:\Projetos\GenexusMCP\src\GxMcp.Gateway\Program.cs:line 164
12
+ at GxMcp.Gateway.Program.<Main>(String[] args)
13
+ [01/04/2026 08:20:30] FATAL UNHANDLED: System.IO.FileNotFoundException: GX_CONFIG_PATH points to a missing config.json: C:\Projetos\GenexusMCP\config.json
14
+ at GxMcp.Gateway.Configuration.Load() in C:\Projetos\GenexusMCP\src\GxMcp.Gateway\Configuration.cs:line 38
15
+ at GxMcp.Gateway.Program.Main(String[] args) in C:\Projetos\GenexusMCP\src\GxMcp.Gateway\Program.cs:line 164
16
+ at GxMcp.Gateway.Program.<Main>(String[] args)
@@ -0,0 +1,22 @@
1
+ @echo off
2
+ setlocal
3
+
4
+ set "REPO_ROOT=C:\sistemas\Projetos\GenexusMCP"
5
+ set "GX_CONFIG_PATH=C:\sistemas\Projetos\GenexusMCP\config.json"
6
+ set "GX_MCP_STDIO=true"
7
+
8
+ set "DEBUG_GATEWAY=%REPO_ROOT%\src\GxMcp.Gateway\bin\Debug\net8.0-windows\GxMcp.Gateway.exe"
9
+ set "RELEASE_GATEWAY=%REPO_ROOT%\src\GxMcp.Gateway\bin\Release\net8.0-windows\GxMcp.Gateway.exe"
10
+
11
+ if exist "%DEBUG_GATEWAY%" (
12
+ "%DEBUG_GATEWAY%"
13
+ exit /b %ERRORLEVEL%
14
+ )
15
+
16
+ if exist "%RELEASE_GATEWAY%" (
17
+ "%RELEASE_GATEWAY%"
18
+ exit /b %ERRORLEVEL%
19
+ )
20
+
21
+ cd /d "%~dp0"
22
+ dotnet GxMcp.Gateway.dll