GeneXus MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GeneXus MCP Serverlist first 5 objects in my KB"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GeneXus MCP Server — Multi-version GeneXus for Claude, Cursor, and AI Agents
¿Hablás español? → Guía de inicio en español Fala português? → Guia de início em português Stuck? → Troubleshooting guide
GeneXus MCP Server lets AI agents — Claude Desktop, Claude Code, Cursor, Antigravity, and any MCP-compatible client — read, edit, analyze, and refactor objects inside a Knowledge Base supported by the selected native SDK or legacy compatibility driver. Native SDK paths work with the real GeneXus SDK and legacy paths use explicit reflection/COM adapters; neither path relies on a parsed copy of the KB.
In practice: you point the MCP at your KB, then ask your AI assistant things like "list all transactions with attribute CustomerId", "add a rule to the Order transaction that validates the total", or "refactor this procedure to use the new SDT" — and it does it.
Multi-version GeneXus support
The same MCP distribution supports the official native SDK majors listed in the
generated compatibility document. It also includes basic, best-effort
compatibility for the legacy versions listed there through separate drivers;
that path is not equivalent to full native-SDK support. A process can route
each declared KB to its own SDK/driver; --gx remains the convenient global
default for a single-major configuration. The commands below are examples of
switching the existing configuration:
npx genexus-mcp@latest init --kb "C:\KBs\KBTeste17" --gx "C:\Program Files (x86)\GeneXus\GeneXus17Trial"
# To switch this MCP configuration to GX18:
npx genexus-mcp@latest init --kb "C:\KBs\MyGX18KB" --gx "C:\Program Files (x86)\GeneXus\GeneXus18"After switching the SDK or KB, fully restart the AI client so it reloads the MCP process and its tool schemas. If GX17 and GX18 must run simultaneously, use separate MCP configurations and ports.
Classic GX8/GX9 KBs can be opened without changing the global GX18 default by declaring their driver and installation per KB (the Gateway accepts both the list and object catalog shapes):
{
"Environment": {
"KBs": {
"SECT80": {
"Path": "D:\\GX80\\SECT",
"Driver": "com-gxpublic",
"InstallationPath": "C:\\Program Files (x86)\\ARTech\\GeneXus\\gxw80",
"Major": "8"
}
}
}
}The equivalent one-shot request is genexus_kb action=open with path,
alias, driver: "com-gxpublic", installationPath, and major: "8".
GX8 uses the registered 32-bit GXPublic provider; the documented .4 ProgID
and the installed GXPubGXX.GXPublic(.5) compatibility registration are
recognized. Classic DAT KB roots are identified from their legacy markers
(DATA001, GXSPC001, kbdata, ATTRIBUT.DAT, or ATT.XPW).
init also reads the KB .gxw major and the selected GeneXus.exe metadata.
It aborts before writing config.json when the majors conflict or an automatic
selection cannot be verified. genexus-mcp doctor exposes the same result as
the kb_sdk_compatibility check. For a disposable fixture, the
live-KB harness includes a catalog-driven matrix
that checks every supported major against one published artifact.
The Gateway reports the detected SDK through genexus_whoami:
geneXus.supportedMajors: explicitly validated native SDK majors from the version cataloggeneXus.legacyMajors: catalogued legacy majors handled by their compatibility driversgeneXus.sdkCompatibility.supportLevel:native-sdkorbasic-legacyfor the detected installationgeneXus.matchedMajor: the major detected for the configured installationgeneXus.versionMatches: whether the detected installation is in that cataloggeneXus.supportedMajor: retained as the legacy single-major alias for the catalog primary
The Worker isolates version-sensitive SDK members behind compatibility adapters.
For example, Design System helper methods that differ between SDK majors are
replaced field-by-field by parsing the native Tokens and Styles parts when
needed. Existing tool names, arguments, and MCP client configuration formats do
not change.
Supported SDK majors: GeneXus 16, GeneXus 17, GeneXus 18 (native SDK).
Basic legacy compatibility: GeneXus Evolution 3, GeneXus Evolution 2, GeneXus Evolution 1, GeneXus 15, GeneXus 9.0, GeneXus 8.0 via com-gxpublic and dotnet-reflection (not the native SDK build).
Primary SDK: GeneXus 18.
Source of truth: config/gx-versions.json.
To add another native-SDK major in the future, add it to the explicit
supportedMajors catalog only after compiling the Worker with that SDK and
passing the focused tests plus a live KB smoke. This prevents the server from
claiming native-SDK compatibility based only on a version string.
Basic legacy compatibility (not native SDK support)
Every legacy version currently declared in legacyMajors uses a best-effort
driver rather than the native SDK build:
GeneXus Evolution 1 (10.1), Evolution 2 (10.2), Evolution 3 (10.3), and GeneXus 15: Driven via runtime reflection (
dotnet-reflection), dynamically adapting to missing types or structural differences (such as module-less KBs withoutQualifiedName).GeneXus 8.0 and GeneXus 9.0: Driven through the classic GXPublic surface (
com-gxpublic), detected fromgxw32.exe/gx.exe/gxdl32.dlland classic.gxiKnowledge Bases. GXPublic is a metadata-oriented OLE DB surface; this path is intentionally limited to basic metadata/core operations and does not claim native-SDK source/edit parity.Graceful degradation: Modern tools that require features introduced in newer GeneXus versions (such as
genexus_api,genexus_gam, orgenexus_module) return structuredUNSUPPORTED_IN_GENEXUS_VERSIONerrors indicating the required minimum version rather than failing ungracefully.
This legacy path is intended for basic core operations where implemented; it does not claim the same feature parity as the native SDK contract for GeneXus 16, 17, and 18.
Related MCP server: mendix-mcp-server
Sharing one Worker between MCP clients
The Gateway and the GeneXus SDK Worker have different responsibilities. By
default, Server.WorkerSharingMode is "isolated": each Gateway owns its own
Worker process. Keep that mode when an agent intentionally needs multiple
independent Workers.
When two or more independent MCP clients need to work on the same physical KB,
set WorkerSharingMode to "shared-host" in a stdio-isolated configuration:
{
"ConfigSchemaVersion": 2,
"GatewayMode": "stdio-isolated",
"GeneXus": {
"InstallationPath": "C:\\Program Files (x86)\\GeneXus\\GeneXus18",
"WorkerExecutable": "C:\\path\\to\\GxMcp.Worker.exe"
},
"Server": {
"HttpPort": 0,
"McpStdio": true,
"WorkerSharingMode": "shared-host"
},
"Environment": {
"ResolutionPolicy": "strict",
"KBs": [
{ "alias": "main", "path": "C:\\KBs\\YourKB" }
]
}
}shared-host shares only the per-KB broker-owned SDK Worker through bounded
local named-pipe attachments. The Gateways remain independent: MCP sessions,
authorization, KB selection, caches, request tracking, cancellation, progress,
notifications, and generated artifacts do not cross the process boundary.
Sharing is accepted only when the physical KB, Worker executable, GeneXus
installation, driver, and target major are compatible; a mismatch fails closed
instead of attaching to the wrong SDK process.
Writes carry a Gateway-local owner into the Worker. The same object/part cannot be written concurrently by two attached clients, while writes to distinct objects may proceed independently through the shared SDK boundary. The Worker itself remains a single STA process, so calls that reach the same SDK are still serialized as required by GeneXus.
For a healthy shared attachment, genexus_whoami and genexus_doctor report the
mode, identity key, pipe, host/Worker PIDs, generation, attachment ID, connection
state, and the latest startup/failure diagnostic. When something fails, inspect
worker.diagnostics and workerHealth before restarting or deleting local
state; these fields distinguish configuration/identity, mutex or registry,
pipe/handshake, startup, child exit/respawn, TTL, and frame failures.
See Worker ownership for the lifecycle contract and the shared-Worker benchmark for the measured two-client smoke and backpressure results.
What you can do with it
A quick map of what the agent can do against your real KB through the 50 tools (details in Tool Surface):
Area | What the agent can do |
🔎 Explore | Search & list objects, read any part (source, rules, events, structure, docs, pattern XML), inspect metadata & callers, regex-search source, view the navigation report |
✏️ Edit code | Edit any object part ( |
🗄️ Author the data model | Transaction structure (DSL), unique/non-unique indexes (create & drop), attribute formulas & subtypes, level Description/Image attributes, Domain enum values, folders & modules, table↔transaction relations & redundant-attribute detection |
🧩 Author other objects | External Object methods & properties, Menu options, REST API objects, WorkWithPlus / WorkWith patterns, typed .NET generator references |
🎨 UI & WorkWithPlus | Full read/write of pattern XML (controls, actions, grids, orders, groups), theme classes & styling, native WebForm/layout edits, control catalog & design-system tokens/classes/images, headless-browser verification |
🔬 Analyze | Impact/dependency analysis, complexity & code metrics, naming, explain-what-this-does, KB activity/freshness, reorg/DDL impact preview, native security scan, schema-drift check |
🛠️ Build, test & deploy | Build (full or fast |
🔀 Refactor & compare | Rename across the KB, extract procedure, compare & merge objects (IDE parity) |
🌿 Versioning, transfer & teams | KB model versions/branches, real XPZ export/import (dependency-aware), GXserver (Team Development) sync + CI pipelines, git-style history, multi-KB parallel work |
🔐 Security | GAM / integrated-security provisioning, KB security audit + native Security Scanner |
Native SDK support works through the native GeneXus SDK — the same code paths the IDE uses — so edits are real and validated, not text hacks on KB files. Legacy support uses the reflection or COM driver listed in the catalog and degrades unsupported modern tools explicitly.
Prerequisites
Before you start, make sure you have:
✅ Windows (GeneXus is Windows-only)
✅ A supported GeneXus installation installed locally: GeneXus 16, 17, or 18 for native SDK support, or a catalogued legacy installation for basic compatibility (see
docs/generated/supported-versions.md; pass another install path explicitly when needed)✅ GeneXus 18 installed locally for the primary native-SDK path; other catalogued native and legacy versions are also supported according to their listed driver
✅ A Knowledge Base created with a supported native or legacy GeneXus major and opened at least once in the IDE (so it's initialized)
✅ Node.js 22+ — check with
node --versionin a terminal; install from nodejs.org if missing✅ An MCP-compatible AI client — Claude Desktop, Claude Code, Cursor, Antigravity, etc.
You do not need to clone this repo or install anything globally — npx handles it.
Never used a terminal before? Press Win+R, type powershell, hit Enter. That's your terminal.
Quickstart (3 steps, ~5 minutes)
Find your two paths first
Before running the installer, note these down:
GeneXus install folder — where
GeneXus.exelives. UsuallyC:\Program Files (x86)\GeneXus\GeneXus18.Your KB folder — the root folder of your Knowledge Base (contains the
.gxfile and subfolders likeModel/,WebSpa/).
Not sure where your KB lives? Open it in GeneXus and check the title bar, or look in File → Recent.
Step 1 — Run the installer
Open a terminal and run, replacing the paths with your KB folder and your GeneXus install:
npx genexus-mcp@latest init --kb "C:\KBs\YourKB" --gx "C:\Program Files (x86)\GeneXus\GeneXus18"Prefer the wizard? Run
npx genexus-mcp@latest init --interactiveand answer the prompts.
What you'll see (takes ~30 seconds first time, faster on re-runs):
npxdownloads the package.The installer verifies the paths exist and GeneXus is present.
It auto-detects which AI clients you have installed and adds the MCP config to each one.
Prints a JSON snippet at the end — keep it in case you need to configure a client manually.
Finishes with
🎉 You are all set!.
On Windows, Antigravity is registered with the gateway executable bundled in the
current npm package when that artifact is available, so it skips the npx bootstrap
chain on every MCP handshake. That path follows the package in the npx cache; after
an upgrade, run npx genexus-mcp@latest clients add --clients antigravity again if
genexus-mcp clients reports a stale launcher. Other clients keep the npx genexus-mcp@latest
launcher unless you use the fixed-path installer below.
Step 2 — Register the MCP in your AI client
Step 1 auto-registers every supported client it detects, including Claude Desktop, Claude Code, Cursor, Antigravity, Gemini CLI, OpenCode, Codex CLI, and VS Code. If yours wasn't detected, copy the JSON snippet from Step 1 into your client's MCP config manually. See the client setup guide if unsure where that file lives.
Step 3 — Restart your AI client, then test
This part trips most people: fully close your AI client and reopen it. Not just the window — the whole process.
Claude Desktop: right-click the system-tray icon → Quit. Then launch it again. (Closing the window is not enough.)
Claude Code: end the session and start a fresh one.
Cursor / Antigravity: close all windows and reopen.
OpenCode: fully quit and reopen it so it reloads
opencode.json/opencode.jsonc.Gemini CLI / Codex CLI: start a new process or session.
Then paste this prompt:
"Using the GeneXus MCP, list the first 5 objects in my KB and show name + type."
What should happen:
The AI invokes the
genexus_list_objectstool (some UIs show "calling tool…").A few seconds later, you get a list of objects from your KB.
If you get a list back — you're done. Skip to What can I ask the AI? for ideas.
If the AI says it doesn't have a GeneXus tool, or nothing happens, go to Troubleshooting — most issues are covered there.
🤖 Let your AI install it for you
If you'd rather not run anything in the terminal yourself, paste this into your AI chat:
Please configure the GeneXus MCP server. Run
npx genexus-mcp@latest init --kb "<MY_KB_PATH>" --gx "<MY_GENEXUS_PATH>"in the terminal. If I haven't told you my GeneXus path and KB path yet, ask me first. Once it succeeds, read the JSON block it printed and add it to my MCP client config. Tell me when I should restart the client to start using GeneXus tools.
Replace the placeholders or let the AI ask you for them.
Corporate install (fixed path, ASR-friendly)
If your machine has Microsoft Defender ASR, SmartScreen, or another endpoint policy blocking unsigned binaries, the default npx flow is painful — npx caches the package under %LOCALAPPDATA%\npm-cache\_npx\<hash>\..., and the <hash> changes per version, so IT can't whitelist a stable path without a wildcard over the whole npm cache (which is too broad).
Use the corporate installer instead. It extracts the binaries to a stable directory and registers the AI clients to launch the gateway directly from there — npx is never on the runtime path.
# One-liner — installs latest release, registers AI clients
iex (irm https://raw.githubusercontent.com/lennix1337/Genexus18MCP/main/scripts/install.ps1)
# With explicit KB and GeneXus paths
$s = irm https://raw.githubusercontent.com/lennix1337/Genexus18MCP/main/scripts/install.ps1
& ([scriptblock]::Create($s)) -Kb "C:\KBs\MyKB" -Gx "C:\Program Files (x86)\GeneXus\GeneXus18"Install location:
Admin shell →
C:\Tools\GenexusMCP\Non-admin shell →
%LOCALAPPDATA%\Programs\GenexusMCP\
Paths to give to IT for the ASR / Defender exclusion list:
<InstallDir>\GxMcp.Gateway.exe
<InstallDir>\worker\GxMcp.Worker.exeRe-run the same one-liner later to upgrade — it detects the installed version (version.txt in the install dir) and downloads only if a newer release is available. Use -Force to reinstall the same version, -Version v2.3.0 to pin a specific tag, -NoClient to skip AI client registration. Node.js 22+ must be installed for client registration; without it the script still extracts the binaries but you'll need to edit the client config (claude_desktop_config.json etc.) manually.
What can I ask the AI?
Once installed, here's what unlocks. Try these as your first prompts:
Exploration
"List all objects of type Procedure in the KB."
"Show me the source of the procedure CalculateInvoiceTotal."
"Find all transactions that reference the attribute CustomerId."
Editing
"Add a rule to the Order transaction: error('Total must be positive') if Total < 0."
"Add a new attribute CreatedAt of type DateTime to the Customer transaction."
"Rename the variable &qty to &quantity in procedure CreateOrder."
Data model authoring (no IDE round-trip)
"Make CustomerEmail unique on the Customer transaction." (creates a unique index)
"Turn CustomerBalance into a formula: sum(InvoiceAmount)."
"Add the enum values Active/Inactive/Pending to the Status domain."
"Add a property apiKey and a method Connect(url) to the PaymentGateway external object."
"Add a menu option 'Customers' to MainMenu that opens CustomerWW."
WorkWithPlus pattern editing (full structural + theming control)
"Add a typed tab with variables, an action, and nested responsive tables to a WorkWithPlus WebPanel."
"In WorkWithPlusOrder, add a 'Duplicate' button to the transaction view alongside Save/Cancel/Delete."
"Group the Customer transaction attributes into a 'Contact Info' section with theme class GroupTelaResp."
"On the WorkWithPlusInvoice list, add a new ordering by InvoiceDate descending."
"Style the Save button on WorkWithPlusOrder with buttonClass='btn ButtonGreen' and apply BigTitle to the form header."
"Remove the Export action from the Selection grid of WorkWithPlusReport."
"Read the Documentation part of the transaction Customer and rewrite it in markdown."
Analysis
"Explain what the procedure ProcessShipment does." —
genexus_analyze mode=explainis a compatibility-only envelope and returnsNotImplemented; usemode=summary,mode=context, orgenexus_readfor supported analysis and source."What SQL does the query in WebPanel CustomerList generate?"
"Summarize the structure of the Sales module."
Build & lifecycle
"Build the KB and report any errors."
"Run the unit tests and show me which failed."
The agent picks the right tool from the 50 tools the MCP exposes (read, edit, refactor, analyze, build, data-model authoring, layout automation, DB/DDL, versioning, security, SQL preview, etc.). The full tool list is in Tool Surface below.
Supported AI clients
Auto-detected and auto-configured by the installer:
Client | Auto-config | Notes |
Claude Desktop | ✅ | Restart required after install |
Claude Code (CLI) | ✅ | Reload session |
Cursor | ✅ | Restart required |
Antigravity | ✅ | Direct packaged gateway; restart required; detected even before its MCP config exists |
Gemini CLI | ✅ | — |
OpenCode (CLI) | ✅ | Reads both direct and nested MCP layouts; restart required |
Codex CLI | ✅ | Writes |
VS Code / VS Code Insiders | ✅ | Native MCP ( |
OpenCode Desktop | ✅ | Shares |
Any MCP client | Manual | Use the JSON snippet printed by |
Run npx genexus-mcp clients at any time to see which agents are installed, which have genexus registered, and whether any point at a stale gateway exe. To (re)register specific ones: npx genexus-mcp clients add --clients antigravity,vscode.
OpenCode Desktop
OpenCode Desktop shares its MCP configuration file (opencode.jsonc or opencode.json)
with OpenCode CLI. Running genexus-mcp init --write-clients or genexus-mcp clients add --clients opencode-desktop
automatically registers genexus18mcp in the shared config. After registration,
fully restart OpenCode Desktop so it reloads its MCP configuration.
Troubleshooting
First stop for any "the agent doesn't see GeneXus" problem: npx genexus-mcp clients (is it registered? does it point at a gateway exe that still exists?) and npx genexus-mcp doctor --mcp-smoke.
Most install issues fall into a handful of buckets — see TROUBLESHOOTING.md for fixes:
Installer can't find GeneXus or the KB
AI client doesn't see the GeneXus tools after restart
"Worker failed to start" / .NET 4.8 errors
KB build errors / locked artifacts
Port 5000 already in use
Permissions on
%LOCALAPPDATA%\GenexusMCP\Antigravity only shows
exit status 1/0xffffffffwith no useful stderr
When a stdio launcher fails before the client can retain stderr, the wrapper writes
the last failure to %LOCALAPPDATA%\GenexusMCP\logs\last-stdio-error.txt. It contains
the UTC timestamp, exit code, and bounded stderr tail. genexus-mcp doctor reports the
same path when a previous failure is present. Read it before changing the install or
using a global npm install; if the Antigravity launcher is stale, re-register it with
npx genexus-mcp@latest clients add --clients antigravity.
Diagnosing a shared Worker failure
If shared-host does not attach or a Worker is restarted, run
genexus_whoami and genexus_doctor from the affected client and preserve the
structured worker.diagnostics/workerHealth block. The useful evidence is the
mode, identity, host/Worker PID, generation, attachment state, connection error,
and failure diagnostic — not only the final no_worker or startup_failed
summary. Do not remove a shared-worker registry file while a matching host is
still running; the broker owns that lifecycle and stale records are recovered
after PID/start-time validation.
Still stuck? Open an issue with the output of npx genexus-mcp doctor --mcp-smoke and the bounded diagnostic fields above. Redact credentials, tokens, connection strings, and other sensitive values.
Tool Surface
The worker exposes 50 tools to the MCP router, grouped by capability below. Most are umbrellas with an action (e.g. genexus_db action=sql_ddl); the detailed schemas live in src/GxMcp.Gateway/tool_definitions.json.
Orientation & health
genexus_whoami— KB context, version, worker/index/database health, self-update check, next-step hintsgenexus_doctor— connection + install + cache health checkgenexus_recipe— named playbooks / self-extending macrosgenexus_telemetry— observability (metrics, latency, errors)
Search & discovery
genexus_query— object search (prefixesname:,type:,usedby:,parent:, …)genexus_list_objects— paginated object listing with aggregatesgenexus_read— read any part of an object (source, structure, rules, events, docs, pattern XML, …)genexus_inspect— one-shot object snapshot (metadata, variables, structure, signature, callers)genexus_search_source— regex/semantic search across Procedure/DataProvider/WebPanel/Transaction sourcegenexus_navigation— the IDE "View Navigation" report
For a GeneXus 18 U16 Data Selector, genexus_read type=DataSelector also accepts
parameters, conditions, orders, definedBy, baseTransaction,
baseTable, and structure. It preserves SDK order and complete expressions,
returns a versionToken, and performs no lifecycle operation. The public U16
SDK does not expose a projected-attribute collection or resolved joins for this
object type, so projection and joins are returned in unsupportedParts with
the technical reason instead of misleading empty arrays. Base objects and
declared indexes are reported only when they can be resolved without Specify.
structure.expression is identified as a semanticProjection: it combines the
typed public SDK elements and never exposes the internal collection type names
produced by DataSelectorStructurePart.ToString() on U16.
Editing
genexus_edit— edit any object part; modesfull/patch/opsgenexus_edit_and_build— edit + optional specification + rebuild callers in one call, with compensating rollback on validation failuregenexus_edit_form— semantic WebForm editsgenexus_variable— Variables-part CRUDgenexus_create— creation umbrella (Transaction, Procedure, Domain, SDT, API, Folder, Module,curl_procedure= scaffold a Procedure from a curl command, …);object_atomicauthors definition + variables + Rules + properties + Source with preflight/read-back/rollbackgenexus_data_view— atomically create/inspect/update/delete a root-only Business Component Transaction mapped through a native Data View to an existing physical table; validates attributes/keys first, supports optimistic versions and true no-mutation dry-runs, requiresconfirm=truefor destructive delete, and reports commit/verification state separatelygenexus_delete_object— delete an object by native SDK identity; usedryRun=trueto inspect incoming references beforeconfirm=truegenexus_format— format a code snippet with the worker's rules
Data model & structure authoring
genexus_structure— read/write the data model:get_visual/get_logic,update_visual(structure DSL),create_index/drop_index(unique/non-unique indexes — the GeneXus way to enforce uniqueness),set_attribute(Formula, subtype, Title/ColumnTitle, IsCollection, basedOnDomain),set_level(level Description/Image attribute),set_domain(edit an existing Domain's enum values / base type). Forcreate_index,dryRun:truevalidates and returns the projected diff without saving; use theversionTokenfromget_indexesasbaseVersionfor concurrency protection. A real write is re-read and verified exactly, with snapshot rollback on failure. It never triggers Specify, Generate, Build, Rebuild, compilation, reorganization, execution, or tests.genexus_authoring— members of object types the structure DSL doesn't cover:add_external_method/add_external_property(External Objects),add_menu_option(Menus)genexus_properties— read/update object-level propertiesgenexus_generator_reference— list/preview/add/remove native .NET generator references with managed-assembly validation, optimistic concurrency, save/re-read verification, and exact full-snapshot rollback; never runs lifecycle actions implicitly
Refactor, patterns & compare
genexus_refactor— rename, extract procedure, WWP condition setgenexus_apply_pattern— apply a GeneXus pattern (WorkWith, WorkWithPlus, …);mode=actionsmanages typed WorkWithPlus grid actions and Action Groupsgenexus_wwp— typed WorkWithPlus editing: Action Groups, atomic nativeadd_grid_attribute, plusadd_tab,move_tab, andremove_tabfor WebPanel tabs and typed childrengenexus_compare— IDE "Compare Objects" parity (IComparerService)genexus_merge— 2- or 3-way object merge (IMergeService)
Analysis, docs & API
genexus_analyze— cross-object semantic analysis (impact, dependencies, complexity, naming, code_metrics, summary,kb_stats= KB activity/freshness,table_relations= table↔transaction relations + redundant attrs, …).mode=explainis compatibility-only: it preserves the legacy response envelope and returnsNotImplemented; usemode=summary,mode=context, orgenexus_readinstead.genexus_doc— generate wiki / dependency graphs / health reportsgenexus_api— introspect REST endpoints exposed by HTTP proceduresgenexus_security— audit KB security:audit_gam(env/GAM props),scan_secrets(regex over Source),scan_native(the SDK's own Security Scanner,ISecurityScannerService)
Lifecycle, build, test & DB
genexus_lifecycle— directedbuild(incl.compile_check), incremental globalbuild_all, forced globalrebuild, validate, index, reorg, and poll statusgenexus_test— run native GXtest testsgenexus_db— DB umbrella: schema-drift,sql_ddl/sql_navigation, static index advisor,sample_data, typed Transaction record query/insert/update with dry-run, optimistic versioning, reread and verified rollback, Domain/SDT type introspection, translation import,reorg_impact, and non-mutatingreorg_previewwith exact DDL only from a current Impact Analysis artifactgenexus_deploy— deploy application (IDeploymentService):list_targets(read) /deploy(destructive,confirm=true)genexus_run_object/genexus_browser— resolve runtime URL and headless-browser verification
Native layout / UI
genexus_layout— SDK layout/WebForm ops (get_tree,find_controls,set_property,add_printblock,get_preview,list_controls= control/theme-class catalog,design_system= DSO tokens/classes/images, …)
KB pool, versioning & team dev
genexus_kb— multi-KB pool (list/open/close/set_default)genexus_module— Module Manager (IModuleManagerService)genexus_kb_version— model version/branch management (Create/Activate/Revert)genexus_versioning— versioning umbrella (git-style history over the KB)genexus_gxserver— GXserver / Team Development sync, incl.pipeline_*(CI pipelines viaIContinuousIntegrationService)genexus_transfer— real XPZ export/import (IKnowledgeManagerService, dependency-aware):export/inspect/importgenexus_memory— per-KB fact store for the agent
Security provisioning, IO & meta
genexus_gam— GAM / integrated-security provisioning (IIntegratedSecurityService)genexus_io— assets, part-text exchange, screenshots, OCRgenexus_sdk_probe— dump the live SDK surface (types/methods/props) for capability discoverygenexus_worker_reload— hot-swap the worker without restarting the client
Multi-KB (v2.3.0+): every non-meta tool takes an optional
kbargument (alias or absolute path). The gateway can hold up toServer.MaxOpenKbs(default 3) KBs open at once, each in its own Worker process — calls to different KBs run truly in parallel. See Advanced Configuration for theKBs[]schema.
WorkWithPlus & theming (via genexus_read / genexus_edit)
Full read/write of
PatternInstance/PatternVirtualXML: containers (<table>, groups), controls (<textBlock>,<attribute>,<gridAttribute>,<filterAttribute>,<errorViewer>), actions (<standardAction>,<userAction>), grids, orders, rules, event blocks. Transaction and Selection views are addressable independently.Documentation(markdown) andHelp(HTML) are first-class write targets.Apply real ThemeClass values (
themeClass,buttonClass,groupThemeClass, …); discover them withgenexus_list_objects --typeFilter ThemeClass.
Edit modes (genexus_edit): full (whole-part replacement, default), patch (Replace/Insert_After/Append over a context anchor — works on source code AND pattern XML), ops (typed semantic ops like set_attribute, add_rule for source-bearing parts).
Pattern XML auto-reconcile: WorkWithPlus encodes IDE rendering order in a per-parent childrenOrderedList attribute. The MCP now rebuilds (and creates if missing) every list from the actual XML child order on each write — callers only describe where an element goes in the tree and the MCP makes the IDE render it there. The response includes a childrenOrderedListReconciliation block listing each (re)written parent plus any structural elements that couldn't be inferred safely.
Safe by default: all write tools accept dryRun: true (returns a preview without mutating the KB) and idempotencyKey (safe retries; concurrent calls coalesce, results cached 15 min).
WorkWithPlus pattern editing — what you can actually do
WorkWithPlus patterns are XML documents that drive Transaction-and-Selection screens. The MCP exposes the entire surface so an agent can design or restructure a screen without opening the IDE:
Capability | Tool / pattern | Status |
Read |
| ✅ |
Replace whole pattern ( |
| ✅ verified live |
Find/replace text-style patches ( |
| ✅ verified live |
Add / remove / reorder structural elements (textBlock, attribute, standardAction, table-as-group, order, filterAttribute, gridAttribute, eventBlock…) | XML edit + auto-reconcile | ✅ verified live |
Theme classes ( | XML attribute on the element | ✅ verified live |
Reorganize Transaction view (form layout, action row) | edit under | ✅ verified live |
Reorganize Selection view (list/grid, filters, orders) | edit under | ✅ verified live |
Auto-rebuild | done implicitly on every write; report under | ✅ verified live |
Add / move / remove WebPanel tabs and typed controls |
| ✅ native Pattern SDK commands; snapshot + re-read + WebForm projection verification |
Add or reconcile one grid Attribute caption |
| ✅ isolated dry-run, full PatternInstance/WebForm snapshots, exact rollback and no implicit lifecycle |
Recommended workflow for a screen redesign:
genexus_list_objects --typeFilter ThemeClass --nameFilter Button— discover the actual button classes available in this KB (ButtonGreen,ButtonBlue,ButtonRed, etc — names vary per KB).genexus_read --name WorkWithPlus<Object> --part PatternInstance— get the current XML.Edit the XML in memory (LLM): wrap attributes in a
<table isGroup="True" title="…" groupThemeClass="GroupTelaResp">, reorder buttons, add a new<standardAction>, attachbuttonClass="btn ButtonGreen", etc.genexus_edit --mode full --part PatternInstance --content "<new xml>"— the MCP rewrites the part, reconcileschildrenOrderedListon every container, and verifies the round-trip.Read back to confirm; refresh the GeneXus IDE to see the result.
Custom buttons use <userAction>, not <standardAction>. Trn_Enter / Trn_Cancel / Trn_Delete are the only registered standard actions on a WorkWithPlus transaction; any custom button (Duplicate, Audit, Export, etc.) must be a <userAction caption="…" name="…" buttonClass="btn ButtonGreen" confirm="False" />. The MCP's reconciler treats <userAction> as a peer of <standardAction> (same typeCode 17/18 by context), so they coexist in the same TableActions row and the IDE renders them side-by-side.
For WebPanel tabs, prefer the native typed operation instead of whole-XML replacement:
{
"action": "add_tab",
"name": "SamplePanel",
"controlName": "IntegrationV3",
"title": "Integration API V3",
"position": 5,
"children": [
{ "type": "variable", "name": "Operation", "basicType": "VarChar", "length": 40 },
{ "type": "userAction", "name": "SendIntegration", "caption": "Send" }
],
"dryRun": true
}The dry-run returns a typed diff and versionToken. Pass it as baseVersion on the persisted call. The write uses Pattern SDK element commands, requires exact PatternInstance/WebForm snapshots, preserves Apply-on-save, re-reads the PatternInstance, projects and re-reads the parent WebForm, and rolls both parts back on any failed confirmation. It never invokes lifecycle operations.
Things to know (orientation, not gotchas):
WorkWithPlus normalizes some attributes after every save. Certain fields are bound to the underlying transaction (e.g.,
titleon top-level groups derives from the transaction's friendly name). When"Apply this pattern on save"is enabled on the WorkWithPlus object, the engine recomputes those fields — same behavior whether you edit in the IDE or via MCP. To make a hard override stick, toggle that flag via MCP:{ "tool": "genexus_properties", "arguments": { "action": "set", "name": "WorkWithPlus<Object>", "propertyName": "SDPlus_Editor_Apply_On_Save", "value": "False" } }Accepts
"True" | "False" | "Default"(Default inherits the KB-level setting). Set back to"Default"to re-enable engine recomputation. Validated live in this repo.Structural safety is enforced by the SDK. If you submit XML that violates pattern invariants (e.g., a
<transaction>without a<level>, or a<standardAction>whosenameisn't a registered action), the SDK rejects the save and the MCP returns the exact error so you can fix the input. The KB never ends up half-written.The IDE Pattern preview is a structural mockup, not a styled render. Theme CSS (
buttonClass,themeClass, fonts, colors) is resolved at runtime, not in the preview canvas — so even after a successful MCP write the preview pane will look generic. To verify styling: open the element in the IDE tree and check the right-hand Properties panel (the applied classes show there), or hit Run / Live Editing to see the real CSS. This is GeneXus IDE behavior, independent of how the pattern was edited.
AXI CLI (for agents and automation)
The genexus-mcp command itself is also an agent-facing CLI with token-optimized output:
genexus-mcp status # gateway/worker state
genexus-mcp doctor --mcp-smoke # health check + protocol probe
genexus-mcp tools list # list available tools
genexus-mcp config show # current resolved config
genexus-mcp layout status # native layout automation stateGlobal flags: --format toon|json|text · --fields f1,f2,... · --limit N · --query <text> · --quiet · --no-color.
Full contract: docs/axi_cli_contract.md. Best-practices playbook: docs/llm_cli_mcp_playbook.md.
Advanced Configuration
The installer writes a config.json for you. To customize networking, timeouts, or shadow paths:
{
"Server": {
"HttpPort": 5000,
"BindAddress": "127.0.0.1",
"SessionIdleTimeoutMinutes": 10,
"WorkerIdleTimeoutMinutes": 60,
"MaxOpenKbs": 3,
"ArtifactOutputDirectory": "C:\\GenexusMCP\\Artifacts"
},
"GeneXus": {
"InstallationPath": "C:\\Program Files (x86)\\GeneXus\\GeneXus18",
"WorkerExecutable": "worker\\GxMcp.Worker.exe"
},
"Environment": {
"DefaultKb": "main",
"KBs": [
{ "alias": "main", "path": "C:\\KBs\\YourKB" },
{ "alias": "legacy", "path": "C:\\KBs\\OtherKB" }
]
}
}Backward compatibility: old configs with a single
Environment.KBPathkeep working — the gateway auto-migrates them toKBs[]+DefaultKbat load time.
Generated documentation artifacts
genexus_doc keeps generated files outside the Worker installation so an update does not strand them in the install backup. By default the root is %LOCALAPPDATA%\GxMcp\Artifacts; each KB gets a stable kb-<identity> directory with docs and html children. Set Server.ArtifactOutputDirectory to choose another root; the per-KB child is still added. GXMCP_ARTIFACT_OUTPUT_DIR is the equivalent override for a directly launched Worker. Wiki responses report result.file; visualizer responses report result.url; both also report result.outputDirectory. Visualizer and health consume the active KB's canonical IndexCacheService snapshot, not a shared install-relative cache.
Working with multiple KBs
Once you declare more than one KB in Environment.KBs[], every tool accepts an optional kb argument:
// LLM example: list procedures in two KBs in parallel
{ "tool": "genexus_list_objects", "arguments": { "kb": "main", "type": "Procedure" } }
{ "tool": "genexus_list_objects", "arguments": { "kb": "legacy", "type": "Transaction" } }Resolution rules when kb is omitted:
an explicit
kbalways wins; use it for parallel work or when a prompt touches more than one KBeach MCP session snapshots the configured
DefaultKbatinitialize;set_defaultchanges the current session and persists the startup fallback for future sessionsopenonly starts/registers a Worker; it does not silently change another session's target. Select it withset_default, or passkbexplicitlyexactly 1 KB open → uses that KB when the session has no selection
2+ KBs open with no session selection → server returns
KB_AMBIGUOUS; choose one withset_defaultor passkbexplicitly
Manage the pool at runtime:
{ "tool": "genexus_kb", "arguments": { "action": "list" } }
// → { selectedKb, activeKb, openKbs: [{alias, path, pid, workingSetMB, idleSeconds}], knownKbs, maxOpenKbs, defaultKb, declaredKbs }
{ "tool": "genexus_kb", "arguments": { "action": "open", "alias": "adhoc", "path": "C:/KBs/ScratchKB" } }
{ "tool": "genexus_kb", "arguments": { "action": "close", "alias": "legacy" } }
{ "tool": "genexus_kb", "arguments": { "action": "set_default", "alias": "main" } } // persists to config.jsonFor OpenCode, call genexus_whoami once at the start of a session. Use
kb.selected, kb.default, kb.openKbs, kb.knownKbs, and kb.declaredKbs
to understand the target, then select the normal working KB with
genexus_kb action=set_default. Every KB-bound response also includes kbAlias
in its JSON payload, which lets OpenCode correlate text-only responses. Keep
kb=<alias> on calls that intentionally compare or update another KB.
The installer registers both OpenCode configuration layouts: the legacy direct
mcp.genexus entry used by OpenCode 1.x and the current mcp.servers.genexus
layout. clients add --clients opencode is only needed to repair or explicitly
re-register a client after installation; normal init handles detected clients
automatically. Restart OpenCode after a registration so it reloads the MCP
configuration.
When the pool is full and no Worker is idle, the server returns KB_POOL_FULL — close one explicitly or raise Server.MaxOpenKbs. Each Worker carries the SDK in its own process (~200–400 MB idle, up to 1–2 GB on heavy KBs), so size the pool against available RAM.
Architecture
graph LR
A[AI Client / Nexus-IDE] -->|MCP stdio or HTTP /mcp| B[Independent Gateway .NET 10]
B -->|isolated stdio: direct child| C[Worker .NET Framework 4.8]
B -->|shared-host: named-pipe attachment| H[Per-KB WorkerHost broker]
H -->|one compatible child| C
C -->|Native SDK| D[GeneXus KB]Worker pool (v2.3.0+): in isolated mode, one .NET 4.8 Worker process per open KB in each Gateway, capped by
MaxOpenKbs(default 3). Withshared-host, compatible Gateways attach to one broker-owned Worker per physical KB instead of starting duplicate SDK processes. Workers are spawned lazily, recycled byWorkerIdleTimeoutMinutes, and evicted LRU when the pool is full.Cross-KB parallelism: tool calls to different KBs run on different Worker processes and never block each other. Calls to the same KB are still serialized by the GeneXus SDK's STA requirement.
Gateway isolation:
shared-hostdoes not turn one Gateway into a master or proxy for another; each client keeps its own MCP state and only the SDK Worker is shared.Gateway reuse: multiple IDE instances share one gateway via lease files at
%LOCALAPPDATA%\GenexusMCP\gateway-leases.HTTP mode: also available at
http://127.0.0.1:5000/mcpwith SSE. Header:MCP-Protocol-Version: 2025-11-25.
Development & building from source
Want to contribute or run a local dev build?
Clone this repo on Windows.
Run
.\build.ps1to restore and build the C# components and package the local artifacts. The script checks for the required .NET SDK and GeneXus 18 installation.If GeneXus is installed outside the default path, set
$env:GX_PATHto its installation folder before running the build. A Knowledge Base is only needed for runtime testing.
Bundled AI skills (.gemini/skills/)
This repo ships a set of agent skills under .gemini/skills/ that any MCP-compatible client with skill support (Gemini CLI, Claude Code via plugin, etc.) can load to ground its GeneXus reasoning:
Skill | What it gives the agent |
| This repository's preferred MCP workflow + multi-KB usage |
| Local engineering rules layered on top of Nexa |
| Full reference set for the primary GeneXus SDK: every object type, command, type, property — imported from the official |
| 58 Chameleon UI component specs |
| Mercury tokens, bundles, theming |
| Authoring custom design systems |
| Panel/screen generation templates |
Third-party skills are Apache 2.0 (see .gemini/skills/NOTICE.md). To refresh against upstream, follow the steps in NOTICE.md.
Nexus-IDE (VS Code extension — optional, not auto-installed)
src/nexus-ide is a lightweight, experimental VS Code extension in the repo. The installer no longer packages or installs it — VS Code is wired up as a native MCP client instead (see Supported AI clients). If you want the extension, build and install it manually:
cd src/nexus-ide; npm ci; npm run compile
npx --yes @vscode/vsce package --out nexus-ide.vsix
code --install-extension nexus-ide.vsix --forceIt provides a virtual filesystem (genexus:// scheme), a KB explorer with multi-part editing, and MCP discovery commands.
Automated release
Workflow:
.github/workflows/release.ymlTrigger: push to
mainwith apackage.jsonversion bumpBehavior: publishes to npm if version is new + creates a GitHub Release tagged
v<version>Required secret:
NPM_TOKEN
License
MIT — see LICENSE.
Search keywords: GeneXus MCP · GeneXus 18 MCP · GeneXus AI · GeneXus Claude · Model Context Protocol GeneXus · GeneXus low-code AI agent · GeneXus Cursor · GeneXus Antigravity
This server cannot be deployed
Maintenance
Related MCP Connectors
- mcp-serverOAuthcom.make
Give your AI agents the tools to build, manage, and run automation workflows.
Code intelligence platform for AI agents. 20 tools for architecture, security & impact analysis.
Git-backed platform for skills, tools, and context for AI agents
Read and write KukGit repositories, files, issues and pull requests from an AI assistant.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceEnables AI coding agents to interact with Gel databases by executing queries, testing changes in transactions, and accessing code examples and rules for advanced workflows.4Apache 2.0
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to read and modify Mendix application models through MCP tools for creating modules, entities, pages, microflows, deploying, and querying runtime data.1-
- AlicenseAqualityCmaintenanceEnables AI agents to read, write, activate, and transport ABAP code in SAP systems via ABAP ADT REST API, without needing SAP GUI.24308 npmMIT
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to interact with 1C: Enterprise development environment, including running tests, managing launch profiles, building configurations, and performing database operations through the 1C: Platform Tools extension.37MIT