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.
- package/LICENSE +21 -0
- package/README.md +192 -0
- package/bin/run.js +45 -0
- package/package.json +25 -0
- package/publish/GxMcp.Gateway.deps.json +125 -0
- package/publish/GxMcp.Gateway.dll +0 -0
- package/publish/GxMcp.Gateway.exe +0 -0
- package/publish/GxMcp.Gateway.pdb +0 -0
- package/publish/GxMcp.Gateway.runtimeconfig.json +20 -0
- package/publish/Newtonsoft.Json.dll +0 -0
- package/publish/System.CodeDom.dll +0 -0
- package/publish/System.Management.dll +0 -0
- package/publish/System.Security.Permissions.dll +0 -0
- package/publish/System.Windows.Extensions.dll +0 -0
- package/publish/config.json +19 -0
- package/publish/gateway_debug.log +5938 -0
- package/publish/gateway_debug.prev.log +5 -0
- package/publish/gateway_panic.log +16 -0
- package/publish/runtimes/win/lib/net8.0/System.Management.dll +0 -0
- package/publish/runtimes/win/lib/net8.0/System.Windows.Extensions.dll +0 -0
- package/publish/start_mcp.bat +22 -0
- package/publish/tool_definitions.json +899 -0
- package/publish/web.config +12 -0
- package/publish/worker/DataTracing.log +0 -0
- package/publish/worker/GxMcp.Worker.exe +0 -0
- package/publish/worker/GxMcp.Worker.exe.config +76 -0
- package/publish/worker/GxMcp.Worker.pdb +0 -0
- package/publish/worker/Newtonsoft.Json.dll +0 -0
- package/publish/worker/ProcArqCandUniGra.md +160 -0
- package/publish/worker/cache/search_index.json +1 -0
- package/publish/worker/search_index.json +1 -0
- package/publish/worker/worker_debug.log +84 -0
- package/publish/worker/worker_debug.prev.log +32 -0
- package/publish/worker/worker_entlib.log +123 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 lennix1337
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
# GeneXus 18 MCP Server (Genexus18MCP)
|
|
2
|
+
|
|
3
|
+
[](https://lobehub.com/mcp/lennix1337-genexus18mcp)
|
|
4
|
+
|
|
5
|
+
A Model Context Protocol (MCP) server for GeneXus 18 with a .NET 8 gateway, a .NET Framework 4.8 worker, and a VS Code extension that operates directly against the MCP surface.
|
|
6
|
+
|
|
7
|
+
## Key Features
|
|
8
|
+
|
|
9
|
+
- Native GeneXus SDK integration through the worker process.
|
|
10
|
+
- MCP over stdio and HTTP at `/mcp`.
|
|
11
|
+
- MCP-first Nexus-IDE runtime for discovery, VFS, providers, commands, and shadow sync.
|
|
12
|
+
- Dynamic tool registry in `src/GxMcp.Gateway/tool_definitions.json`.
|
|
13
|
+
- HTTP session handling with protocol-version negotiation and SSE support.
|
|
14
|
+
|
|
15
|
+
## Nexus-IDE
|
|
16
|
+
|
|
17
|
+
The repository includes `src/nexus-ide`, a lightweight VS Code extension for GeneXus work:
|
|
18
|
+
|
|
19
|
+
- Virtual file system using the `genexus://` scheme
|
|
20
|
+
- KB explorer
|
|
21
|
+
- Multi-part editing for source, rules, events, and variables
|
|
22
|
+
- MCP discovery commands for tools, resources, and prompts
|
|
23
|
+
|
|
24
|
+
The extension uses `/mcp` directly. The legacy `/api/command` path has been removed from the gateway.
|
|
25
|
+
|
|
26
|
+
## Installation
|
|
27
|
+
|
|
28
|
+
### NPX (Fastest)
|
|
29
|
+
|
|
30
|
+
If you have Node.js installed, you can run the server directly from the npm registry without cloning the repository! Just create your "config.json" file in any directory and run:
|
|
31
|
+
|
|
32
|
+
`ash
|
|
33
|
+
npx genexus-mcp
|
|
34
|
+
``n
|
|
35
|
+
For **Claude Desktop** or other MCP clients, simply configure it like this:
|
|
36
|
+
|
|
37
|
+
`json
|
|
38
|
+
"genexus": {
|
|
39
|
+
"command": "npx",
|
|
40
|
+
"args": ["-y", "genexus-mcp"],
|
|
41
|
+
"env": {
|
|
42
|
+
"GX_CONFIG_PATH": "C:\\path\\to\\your\\config.json"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
``n
|
|
46
|
+
### One-Click (From Source)
|
|
47
|
+
|
|
48
|
+
1. Clone the repository.
|
|
49
|
+
2. Run `.\setup.bat` (Windows).
|
|
50
|
+
- This will check prerequisites, build all components, and configure your local tools (Claude, Codex, Antigravity, and Cursor/Cline when detected).
|
|
51
|
+
3. If GeneXus or your KB are not auto-detected, follow the prompts to provide the paths.
|
|
52
|
+
4. Restart your AI tools/IDE to pick up the new MCP server.
|
|
53
|
+
|
|
54
|
+
### Agent-Led Installation (for AI Assistants)
|
|
55
|
+
|
|
56
|
+
If you are using an AI agent (like Antigravity, Cline, or Roo), copy and paste the following prompt to have it handle everything for you:
|
|
57
|
+
|
|
58
|
+
> [!TIP]
|
|
59
|
+
> **Copy-Paste to your Agent:**
|
|
60
|
+
> "Install the GeneXus MCP server in this repository.
|
|
61
|
+
> 1. Auto-detect the GeneXus 18 installation path and the local KB path.
|
|
62
|
+
> 2. Run `.\install.ps1` to build and register the server.
|
|
63
|
+
> 3. Verify the `config.json` is valid.
|
|
64
|
+
> 4. Update your own MCP configuration to include the 'genexus' server using the generated `start_mcp.bat`."
|
|
65
|
+
|
|
66
|
+
### Manual path
|
|
67
|
+
|
|
68
|
+
Notes:
|
|
69
|
+
|
|
70
|
+
- The installer updates `config.json`, builds the gateway/worker, packages `src/nexus-ide/nexus-ide.vsix`, configures Claude Desktop and Codex, and updates Antigravity plus Cursor/Cline settings when those clients are present.
|
|
71
|
+
- `setup.bat` is a thin bootstrap wrapper that launches `install.ps1` through PowerShell with `-ExecutionPolicy Bypass`.
|
|
72
|
+
- Automatic extension installation works with the editor CLIs found in `PATH` among `code`, `code-insiders`, `cursor`, `codium`, and `antigravity`. If none are present, install the generated `.vsix` manually.
|
|
73
|
+
- The desktop launcher at `publish/start_mcp.bat` exports `GX_CONFIG_PATH` and reuses the current repository gateway build when available, so local MCP clients and the extension share the repository-root `config.json`.
|
|
74
|
+
- `build.ps1` now refreshes both the publish/runtime artifacts and the debug-consumed artifacts in one pass, so `F5` and external MCP clients stop drifting onto different gateway/worker builds.
|
|
75
|
+
- The gateway now registers a local process lease keyed by `HttpPort + KBPath + InstallationPath + ShadowPath`, so duplicate launches can reuse a healthy live gateway instead of spawning another one.
|
|
76
|
+
- The worker now starts lazily on the first real command and shuts down automatically after the configured idle timeout, which prevents idle `GxMcp.Worker.exe` instances from lingering and locking the build output.
|
|
77
|
+
|
|
78
|
+
### Development build
|
|
79
|
+
|
|
80
|
+
```powershell
|
|
81
|
+
.\build.ps1
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## Configuration
|
|
85
|
+
|
|
86
|
+
Edit `config.json`:
|
|
87
|
+
|
|
88
|
+
```json
|
|
89
|
+
{
|
|
90
|
+
"Server": {
|
|
91
|
+
"HttpPort": 5000,
|
|
92
|
+
"BindAddress": "127.0.0.1",
|
|
93
|
+
"AllowedOrigins": [],
|
|
94
|
+
"SessionIdleTimeoutMinutes": 10,
|
|
95
|
+
"WorkerIdleTimeoutMinutes": 5
|
|
96
|
+
},
|
|
97
|
+
"GeneXus": {
|
|
98
|
+
"InstallationPath": "C:\\Program Files (x86)\\GeneXus\\GeneXus18",
|
|
99
|
+
"WorkerExecutable": "worker\\GxMcp.Worker.exe"
|
|
100
|
+
},
|
|
101
|
+
"Environment": {
|
|
102
|
+
"KBPath": "C:\\KBs\\YourKB"
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
## Correct MCP Usage
|
|
108
|
+
|
|
109
|
+
Official transports:
|
|
110
|
+
|
|
111
|
+
- stdio MCP for desktop clients
|
|
112
|
+
- HTTP MCP at `http://127.0.0.1:5000/mcp`
|
|
113
|
+
|
|
114
|
+
HTTP MCP rules:
|
|
115
|
+
|
|
116
|
+
1. Send `initialize` first.
|
|
117
|
+
2. Include `MCP-Protocol-Version: 2025-06-18`.
|
|
118
|
+
3. Persist and reuse the returned `MCP-Session-Id`.
|
|
119
|
+
4. Use discovery methods before hardcoding assumptions: `tools/list`, `resources/list`, `resources/templates/list`, `prompts/list`.
|
|
120
|
+
5. Execute work with `tools/call`, `resources/read`, and `prompts/get`.
|
|
121
|
+
6. Use `GET /mcp` for SSE notifications when needed.
|
|
122
|
+
7. Use `DELETE /mcp` to close the session.
|
|
123
|
+
|
|
124
|
+
The gateway is MCP-only on HTTP. Use `/mcp`.
|
|
125
|
+
|
|
126
|
+
## Process Lifecycle
|
|
127
|
+
|
|
128
|
+
- Gateway reuse is controlled by a local lease under `%LOCALAPPDATA%\\GenexusMCP\\gateway-leases`.
|
|
129
|
+
- The launcher validates the lease identity and only removes stale or dead instances for that exact identity instead of killing every gateway/worker process.
|
|
130
|
+
- The gateway stays resident by default; the worker is started on demand and is stopped after `Server.WorkerIdleTimeoutMinutes` of inactivity when there are no queued or in-flight requests.
|
|
131
|
+
|
|
132
|
+
## Tool Surface
|
|
133
|
+
|
|
134
|
+
See `GEMINI.md` for guidance. The main MCP tools are:
|
|
135
|
+
|
|
136
|
+
- `genexus_query`
|
|
137
|
+
- supports optional `typeFilter` and `domainFilter` for server-side narrowing before ranking/truncation
|
|
138
|
+
- `genexus_read`
|
|
139
|
+
- defaults to a source-first first page for MCP clients when `offset` and `limit` are omitted
|
|
140
|
+
- `genexus_batch_read`
|
|
141
|
+
- `genexus_edit`
|
|
142
|
+
- `genexus_batch_edit`
|
|
143
|
+
- `genexus_open_kb`
|
|
144
|
+
- `genexus_inspect`
|
|
145
|
+
- `genexus_analyze`
|
|
146
|
+
- `genexus_inject_context`
|
|
147
|
+
- `genexus_lifecycle`
|
|
148
|
+
- `genexus_get_sql`
|
|
149
|
+
- `genexus_test`
|
|
150
|
+
- `genexus_create_object`
|
|
151
|
+
- `genexus_export_object`
|
|
152
|
+
- `genexus_import_object`
|
|
153
|
+
- `genexus_refactor`
|
|
154
|
+
- `genexus_add_variable`
|
|
155
|
+
- `genexus_explain_code`
|
|
156
|
+
- `genexus_summarize`
|
|
157
|
+
- `genexus_forge`
|
|
158
|
+
- `genexus_format`
|
|
159
|
+
- `genexus_properties`
|
|
160
|
+
- `genexus_asset`
|
|
161
|
+
- `genexus_history`
|
|
162
|
+
- `genexus_structure`
|
|
163
|
+
- `genexus_doc`
|
|
164
|
+
|
|
165
|
+
`genexus_asset` is metadata-first by design. Use `action='read'` with `includeContent=true` only when the file is small enough to fit the MCP context budget. For larger assets, read metadata only and keep `maxBytes` explicit.
|
|
166
|
+
|
|
167
|
+
`genexus_read` and `genexus_edit` also support XML metadata parts such as `Layout`, `WebForm`, and `PatternInstance`. For WorkWithPlus-owned panels, `PatternInstance` resolves through the authoritative `WorkWithPlus{Name}` object instead of the parent WebPanel preview.
|
|
168
|
+
|
|
169
|
+
`genexus_open_kb` switches the active Knowledge Base for the current worker session. `genexus_export_object` writes an object part to a text file, and `genexus_import_object` reads a text file and applies it to the requested object part through the same write path used by `genexus_edit`.
|
|
170
|
+
|
|
171
|
+
## Architecture
|
|
172
|
+
|
|
173
|
+
```mermaid
|
|
174
|
+
graph LR
|
|
175
|
+
A[AI Client or Nexus-IDE] -->|MCP stdio or HTTP /mcp| B[Gateway .NET 8]
|
|
176
|
+
B -->|JSON-RPC over process boundary| C[Worker .NET Framework 4.8]
|
|
177
|
+
C -->|Native SDK| D[GeneXus KB]
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
## Runtime Lifecycle
|
|
181
|
+
|
|
182
|
+
- The gateway now writes a local lease keyed by `HttpPort + KBPath + InstallationPath + GX_SHADOW_PATH` and exits early when an identical live instance already owns that key.
|
|
183
|
+
- Nexus-IDE reuses the leased gateway instead of relying only on a port probe, and startup cleanup is now selective to the leased PID instead of broad `taskkill` sweeps.
|
|
184
|
+
- The worker is lazy: the gateway creates the worker on the first real command instead of at gateway boot.
|
|
185
|
+
- The worker shuts down automatically after `Server.WorkerIdleTimeoutMinutes` of inactivity, then starts again on the next command.
|
|
186
|
+
- Gateway lease files live under `%LOCALAPPDATA%\\GenexusMCP\\gateway-leases`.
|
|
187
|
+
|
|
188
|
+
## Current State
|
|
189
|
+
|
|
190
|
+
- The extension is MCP-first.
|
|
191
|
+
- The gateway and worker remain the production architecture.
|
|
192
|
+
- The HTTP transport is MCP-only at `/mcp`.
|
package/bin/run.js
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
const { spawn } = require('child_process');
|
|
3
|
+
const path = require('path');
|
|
4
|
+
const fs = require('fs');
|
|
5
|
+
|
|
6
|
+
const cwdConfigPath = path.join(process.cwd(), 'config.json');
|
|
7
|
+
|
|
8
|
+
// Check if config.json exists in CWD. If so, bind it to GX_CONFIG_PATH.
|
|
9
|
+
if (fs.existsSync(cwdConfigPath)) {
|
|
10
|
+
process.env.GX_CONFIG_PATH = cwdConfigPath;
|
|
11
|
+
} else if (!process.env.GX_CONFIG_PATH) {
|
|
12
|
+
console.error('[genexus-mcp] ERROR: No config.json found in the current directory!');
|
|
13
|
+
console.error('[genexus-mcp] Please create a config.json file here with at least the KBPath and GeneXus InstallationPath.');
|
|
14
|
+
console.error('[genexus-mcp] Or specify the path via the GX_CONFIG_PATH environment variable.');
|
|
15
|
+
process.exit(1);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// Locate the bundled .NET executable inside the publish folder
|
|
19
|
+
const gatewayExePath = path.join(__dirname, '..', 'publish', 'GxMcp.Gateway.exe');
|
|
20
|
+
|
|
21
|
+
if (!fs.existsSync(gatewayExePath)) {
|
|
22
|
+
console.error(`[genexus-mcp] ERROR: The gateway executable was not found at ${gatewayExePath}`);
|
|
23
|
+
console.error(`[genexus-mcp] Please ensure you installed the package correctly on a Windows environment.`);
|
|
24
|
+
process.exit(1);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// Pass everything transparently through stdio
|
|
28
|
+
const child = spawn(gatewayExePath, process.argv.slice(2), {
|
|
29
|
+
stdio: 'inherit',
|
|
30
|
+
env: process.env,
|
|
31
|
+
windowsHide: true,
|
|
32
|
+
shell: false
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
child.on('error', (err) => {
|
|
36
|
+
console.error('[genexus-mcp] ERROR: Failed to start the MCP Gateway process:', err.message);
|
|
37
|
+
process.exit(1);
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
child.on('exit', (code, signal) => {
|
|
41
|
+
if (signal) {
|
|
42
|
+
process.exit(1);
|
|
43
|
+
}
|
|
44
|
+
process.exit(code || 0);
|
|
45
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "genexus-mcp",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "A high-performance Model Context Protocol (MCP) server for GeneXus 18",
|
|
5
|
+
"bin": {
|
|
6
|
+
"genexus-mcp": "bin/run.js"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"bin",
|
|
10
|
+
"publish"
|
|
11
|
+
],
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=18.0.0"
|
|
14
|
+
},
|
|
15
|
+
"author": "lennix1337",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/lennix1337/Genexus18MCP.git"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/lennix1337/Genexus18MCP/issues"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/lennix1337/Genexus18MCP#readme"
|
|
25
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
{
|
|
2
|
+
"runtimeTarget": {
|
|
3
|
+
"name": ".NETCoreApp,Version=v8.0",
|
|
4
|
+
"signature": ""
|
|
5
|
+
},
|
|
6
|
+
"compilationOptions": {},
|
|
7
|
+
"targets": {
|
|
8
|
+
".NETCoreApp,Version=v8.0": {
|
|
9
|
+
"GxMcp.Gateway/1.0.0": {
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"Newtonsoft.Json": "13.0.3",
|
|
12
|
+
"System.Management": "10.0.5",
|
|
13
|
+
"System.Security.Permissions": "10.0.3"
|
|
14
|
+
},
|
|
15
|
+
"runtime": {
|
|
16
|
+
"GxMcp.Gateway.dll": {}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"Newtonsoft.Json/13.0.3": {
|
|
20
|
+
"runtime": {
|
|
21
|
+
"lib/net6.0/Newtonsoft.Json.dll": {
|
|
22
|
+
"assemblyVersion": "13.0.0.0",
|
|
23
|
+
"fileVersion": "13.0.3.27908"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"System.CodeDom/10.0.5": {
|
|
28
|
+
"runtime": {
|
|
29
|
+
"lib/net8.0/System.CodeDom.dll": {
|
|
30
|
+
"assemblyVersion": "10.0.0.0",
|
|
31
|
+
"fileVersion": "10.0.526.15411"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"System.Management/10.0.5": {
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"System.CodeDom": "10.0.5"
|
|
38
|
+
},
|
|
39
|
+
"runtime": {
|
|
40
|
+
"lib/net8.0/System.Management.dll": {
|
|
41
|
+
"assemblyVersion": "10.0.0.5",
|
|
42
|
+
"fileVersion": "10.0.526.15411"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"runtimeTargets": {
|
|
46
|
+
"runtimes/win/lib/net8.0/System.Management.dll": {
|
|
47
|
+
"rid": "win",
|
|
48
|
+
"assetType": "runtime",
|
|
49
|
+
"assemblyVersion": "10.0.0.5",
|
|
50
|
+
"fileVersion": "10.0.526.15411"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"System.Security.Permissions/10.0.3": {
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"System.Windows.Extensions": "10.0.3"
|
|
57
|
+
},
|
|
58
|
+
"runtime": {
|
|
59
|
+
"lib/net8.0/System.Security.Permissions.dll": {
|
|
60
|
+
"assemblyVersion": "10.0.0.0",
|
|
61
|
+
"fileVersion": "10.0.326.7603"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"System.Windows.Extensions/10.0.3": {
|
|
66
|
+
"runtime": {
|
|
67
|
+
"lib/net8.0/System.Windows.Extensions.dll": {
|
|
68
|
+
"assemblyVersion": "10.0.0.0",
|
|
69
|
+
"fileVersion": "10.0.326.7603"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"runtimeTargets": {
|
|
73
|
+
"runtimes/win/lib/net8.0/System.Windows.Extensions.dll": {
|
|
74
|
+
"rid": "win",
|
|
75
|
+
"assetType": "runtime",
|
|
76
|
+
"assemblyVersion": "10.0.0.0",
|
|
77
|
+
"fileVersion": "10.0.326.7603"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"libraries": {
|
|
84
|
+
"GxMcp.Gateway/1.0.0": {
|
|
85
|
+
"type": "project",
|
|
86
|
+
"serviceable": false,
|
|
87
|
+
"sha512": ""
|
|
88
|
+
},
|
|
89
|
+
"Newtonsoft.Json/13.0.3": {
|
|
90
|
+
"type": "package",
|
|
91
|
+
"serviceable": true,
|
|
92
|
+
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
|
93
|
+
"path": "newtonsoft.json/13.0.3",
|
|
94
|
+
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
|
95
|
+
},
|
|
96
|
+
"System.CodeDom/10.0.5": {
|
|
97
|
+
"type": "package",
|
|
98
|
+
"serviceable": true,
|
|
99
|
+
"sha512": "sha512-hGZWDDJh1U6t7fy3iO4HlZYK1ur1fWE3sTqTNHkHk0Leh0JUcxYM//JtLBNG5g+6D2Lt0+aHH8rc7e5oIlNgCg==",
|
|
100
|
+
"path": "system.codedom/10.0.5",
|
|
101
|
+
"hashPath": "system.codedom.10.0.5.nupkg.sha512"
|
|
102
|
+
},
|
|
103
|
+
"System.Management/10.0.5": {
|
|
104
|
+
"type": "package",
|
|
105
|
+
"serviceable": true,
|
|
106
|
+
"sha512": "sha512-JhBVxvWhUJ0KAquUK0dMnc3a1Ol4JyH8fMrMQZ9GgEUkrtvPy8DE57SDnGnuvOdI0maJOdguxw87N5bh2eL87A==",
|
|
107
|
+
"path": "system.management/10.0.5",
|
|
108
|
+
"hashPath": "system.management.10.0.5.nupkg.sha512"
|
|
109
|
+
},
|
|
110
|
+
"System.Security.Permissions/10.0.3": {
|
|
111
|
+
"type": "package",
|
|
112
|
+
"serviceable": true,
|
|
113
|
+
"sha512": "sha512-kuqE2IzQ4lE92519tV9z5asKOXk/budCwryp1C53zCdaUls0+mWlGfmxiiQOpOkVkPPeIx1U7yCswaknBjhEOQ==",
|
|
114
|
+
"path": "system.security.permissions/10.0.3",
|
|
115
|
+
"hashPath": "system.security.permissions.10.0.3.nupkg.sha512"
|
|
116
|
+
},
|
|
117
|
+
"System.Windows.Extensions/10.0.3": {
|
|
118
|
+
"type": "package",
|
|
119
|
+
"serviceable": true,
|
|
120
|
+
"sha512": "sha512-TZ/9e7JLxAT3j66XuNh7Bbqfz1m7UZC92uLknoldmALo82OYhrb4e8LGQ0S3umh2M+JQ94qQpLvPXIkmyuMraw==",
|
|
121
|
+
"path": "system.windows.extensions/10.0.3",
|
|
122
|
+
"hashPath": "system.windows.extensions.10.0.3.nupkg.sha512"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"runtimeOptions": {
|
|
3
|
+
"tfm": "net8.0",
|
|
4
|
+
"frameworks": [
|
|
5
|
+
{
|
|
6
|
+
"name": "Microsoft.NETCore.App",
|
|
7
|
+
"version": "8.0.0"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "Microsoft.AspNetCore.App",
|
|
11
|
+
"version": "8.0.0"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"configProperties": {
|
|
15
|
+
"System.GC.Server": true,
|
|
16
|
+
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
17
|
+
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"GeneXus": {
|
|
3
|
+
"InstallationPath": "C:\\Program Files (x86)\\GeneXus\\GeneXus18",
|
|
4
|
+
"WorkerExecutable": "C:\\sistemas\\projetos\\GenexusMCP\\src\\GxMcp.Worker\\bin\\Debug\\GxMcp.Worker.exe"
|
|
5
|
+
},
|
|
6
|
+
"Server": {
|
|
7
|
+
"HttpPort": 5000,
|
|
8
|
+
"McpStdio": true,
|
|
9
|
+
"BindAddress": "127.0.0.1"
|
|
10
|
+
},
|
|
11
|
+
"Logging": {
|
|
12
|
+
"Level": "Debug",
|
|
13
|
+
"Path": "logs"
|
|
14
|
+
},
|
|
15
|
+
"Environment": {
|
|
16
|
+
"KBPath": "C:\\KBs\\academicoLocal",
|
|
17
|
+
"GX_SHADOW_PATH": "c:\\sistemas\\projetos\\GenexusMCP\\.gx_mirror"
|
|
18
|
+
}
|
|
19
|
+
}
|