nowaikit 4.10.0 → 4.11.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.
@@ -5092,6 +5092,141 @@
5092
5092
  ]
5093
5093
  }
5094
5094
  },
5095
+ {
5096
+ "name": "list_decision_tables",
5097
+ "description": "List Decision Builder decision tables (sys_decision), optionally filtered by name or active status",
5098
+ "inputSchema": {
5099
+ "type": "object",
5100
+ "properties": {
5101
+ "query": {
5102
+ "type": "string",
5103
+ "description": "Search decision tables by name or description"
5104
+ },
5105
+ "active": {
5106
+ "type": "boolean",
5107
+ "description": "Filter to active decision tables only"
5108
+ },
5109
+ "limit": {
5110
+ "type": "number",
5111
+ "description": "Max records to return (default 50)"
5112
+ }
5113
+ },
5114
+ "required": []
5115
+ }
5116
+ },
5117
+ {
5118
+ "name": "get_decision_table",
5119
+ "description": "Get a decision table with its inputs and answer rows, by name or sys_id",
5120
+ "inputSchema": {
5121
+ "type": "object",
5122
+ "properties": {
5123
+ "name_or_sysid": {
5124
+ "type": "string",
5125
+ "description": "Decision table name or sys_id"
5126
+ }
5127
+ },
5128
+ "required": [
5129
+ "name_or_sysid"
5130
+ ]
5131
+ }
5132
+ },
5133
+ {
5134
+ "name": "list_decision_inputs",
5135
+ "description": "List the inputs of a decision table",
5136
+ "inputSchema": {
5137
+ "type": "object",
5138
+ "properties": {
5139
+ "decision_sys_id": {
5140
+ "type": "string",
5141
+ "description": "sys_id of the decision table (sys_decision)"
5142
+ }
5143
+ },
5144
+ "required": [
5145
+ "decision_sys_id"
5146
+ ]
5147
+ }
5148
+ },
5149
+ {
5150
+ "name": "list_decision_answers",
5151
+ "description": "List the answer/result rows of a decision table",
5152
+ "inputSchema": {
5153
+ "type": "object",
5154
+ "properties": {
5155
+ "decision_sys_id": {
5156
+ "type": "string",
5157
+ "description": "sys_id of the decision table (sys_decision)"
5158
+ },
5159
+ "limit": {
5160
+ "type": "number",
5161
+ "description": "Max records to return (default 100)"
5162
+ }
5163
+ },
5164
+ "required": [
5165
+ "decision_sys_id"
5166
+ ]
5167
+ }
5168
+ },
5169
+ {
5170
+ "name": "create_decision_table",
5171
+ "description": "Create a Decision Builder decision table (sys_decision). Requires WRITE_ENABLED=true",
5172
+ "inputSchema": {
5173
+ "type": "object",
5174
+ "properties": {
5175
+ "name": {
5176
+ "type": "string",
5177
+ "description": "Decision table name"
5178
+ },
5179
+ "description": {
5180
+ "type": "string",
5181
+ "description": "Description of what the decision returns"
5182
+ },
5183
+ "active": {
5184
+ "type": "boolean",
5185
+ "description": "Whether the decision table is active (default true)"
5186
+ },
5187
+ "fields": {
5188
+ "type": "object",
5189
+ "description": "Additional sys_decision field values to set"
5190
+ }
5191
+ },
5192
+ "required": [
5193
+ "name"
5194
+ ]
5195
+ }
5196
+ },
5197
+ {
5198
+ "name": "create_decision_input",
5199
+ "description": "Add an input to a decision table (sys_decision_input). Requires WRITE_ENABLED=true",
5200
+ "inputSchema": {
5201
+ "type": "object",
5202
+ "properties": {
5203
+ "decision_sys_id": {
5204
+ "type": "string",
5205
+ "description": "sys_id of the parent decision table (sys_decision)"
5206
+ },
5207
+ "name": {
5208
+ "type": "string",
5209
+ "description": "Input name/label"
5210
+ },
5211
+ "type": {
5212
+ "type": "string",
5213
+ "description": "Input data type (e.g., string, integer, reference, boolean)"
5214
+ },
5215
+ "order": {
5216
+ "type": "number",
5217
+ "description": "Display order of the input"
5218
+ },
5219
+ "fields": {
5220
+ "type": "object",
5221
+ "description": "Additional sys_decision_input field values to set"
5222
+ }
5223
+ },
5224
+ "required": [
5225
+ "decision_sys_id",
5226
+ "name"
5227
+ ]
5228
+ }
5229
+ },
5095
5230
  {
5096
5231
  "name": "list_portals",
5097
5232
  "description": "List all Service Portal configurations available in the instance",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nowaikit",
3
3
  "mcpName": "io.github.aartiq/nowaikit",
4
- "version": "4.10.0",
4
+ "version": "4.11.0",
5
5
  "description": "The most comprehensive ServiceNow AI toolkit. 450+ MCP tools plus 26 AI capabilities (scan, review, build, ops, docs) plus direct BYOK mode. Integrates with Claude, ChatGPT, Gemini, Cursor, GitHub Copilot and any LLM.",
6
6
  "main": "dist/server.js",
7
7
  "types": "dist/server.d.ts",