genexus-mcp 2.1.1 → 2.1.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genexus-mcp",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"mcpName": "io.github.lennix1337/genexus",
|
|
5
5
|
"description": "GeneXus 18 MCP server — read, edit, and analyze GeneXus knowledge base objects (transactions, web panels, procedures, SDTs) directly from Claude, Cursor, and other AI agents over the Model Context Protocol.",
|
|
6
6
|
"keywords": [
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -475,13 +475,18 @@
|
|
|
475
475
|
},
|
|
476
476
|
{
|
|
477
477
|
"name": "genexus_get_sql",
|
|
478
|
-
"description": "Returns the SQL DDL (CREATE TABLE) for a specific Transaction or Table object.",
|
|
478
|
+
"description": "Returns the SQL DDL (CREATE TABLE) for a specific Transaction or Table object. For Transactions with Levels, always lists subordinated tables; set includeSubordinated=true to also return their full DDL.",
|
|
479
479
|
"inputSchema": {
|
|
480
480
|
"type": "object",
|
|
481
481
|
"properties": {
|
|
482
482
|
"name": {
|
|
483
483
|
"type": "string",
|
|
484
484
|
"description": "The name of the Transaction or Table."
|
|
485
|
+
},
|
|
486
|
+
"includeSubordinated": {
|
|
487
|
+
"type": "boolean",
|
|
488
|
+
"description": "When true and the target is a Transaction with Levels, include full CREATE TABLE DDL for each subordinated physical table in subordinatedDDL. Defaults to false.",
|
|
489
|
+
"default": false
|
|
485
490
|
}
|
|
486
491
|
},
|
|
487
492
|
"required": [
|
|
@@ -1023,5 +1028,35 @@
|
|
|
1023
1028
|
"action"
|
|
1024
1029
|
]
|
|
1025
1030
|
}
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"name": "genexus_search_source",
|
|
1034
|
+
"description": "Semantic and regex search across Procedure/DataProvider/WebPanel/Transaction source code. Provide 'callee' to match call expressions by name (qualified like 'DPParametros.Udp' or unqualified like 'Udp'), optionally 'argMatches' (positional, e.g. {\"0\":\"373\"}) to constrain by literal args. Or provide 'pattern' as a regex. Both can combine.",
|
|
1035
|
+
"inputSchema": {
|
|
1036
|
+
"type": "object",
|
|
1037
|
+
"properties": {
|
|
1038
|
+
"callee": { "type": "string", "description": "Method/function name to match. Qualified ('DPParametros.Udp') matches exactly; unqualified ('Udp') matches the trailing segment of any qualified callee." },
|
|
1039
|
+
"argMatches": { "type": "object", "description": "Map of positional arg index (as string) to expected literal text. Quotes are normalized." },
|
|
1040
|
+
"pattern": { "type": "string", "description": "Regex applied to lines. If both callee and pattern are given, line must also match pattern." },
|
|
1041
|
+
"typeFilter": { "type": "string", "description": "Procedure | DataProvider | WebPanel | Transaction (default: all four)." },
|
|
1042
|
+
"scope": { "type": "array", "items": { "type": "string" }, "description": "Parts to search: 'source' (default), 'rules', 'conditions', 'events'." },
|
|
1043
|
+
"maxResults": { "type": "integer", "description": "Cap (default 50).", "default": 50 },
|
|
1044
|
+
"caseSensitive": { "type": "boolean", "description": "Apply regex case-sensitive (default false).", "default": false },
|
|
1045
|
+
"includeComments": { "type": "boolean", "description": "Include calls/text inside comments (default false).", "default": false }
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"name": "genexus_get_sql_for_navigation",
|
|
1051
|
+
"description": "Generates SQL from a procedure/data-provider's resolved For Each navigation. Returns one SELECT per Level with bind-parameter placeholders (:VarName) where the source uses &Vars. Useful for cross-environment comparison (paste the SQL into a prod DBA console). Warnings field reports levels where OptimizedWhere couldn't be translated.",
|
|
1052
|
+
"inputSchema": {
|
|
1053
|
+
"type": "object",
|
|
1054
|
+
"properties": {
|
|
1055
|
+
"name": { "type": "string", "description": "Procedure or DataProvider name." },
|
|
1056
|
+
"levelNumber": { "type": "integer", "description": "Optional: emit SQL only for the given Level number (1-based)." },
|
|
1057
|
+
"type": { "type": "string", "description": "Optional type filter." }
|
|
1058
|
+
},
|
|
1059
|
+
"required": ["name"]
|
|
1060
|
+
}
|
|
1026
1061
|
}
|
|
1027
1062
|
]
|
|
Binary file
|
|
Binary file
|