mcp-server-db2i 2.2.0 → 2.3.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 (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![MCP](https://img.shields.io/badge/MCP-2026--07--28-green?logo=anthropic&logoColor=white)](https://modelcontextprotocol.io/)
7
7
  [![IBM i](https://img.shields.io/badge/IBM%20i-V7R3+-green?logo=ibm&logoColor=white)](https://www.ibm.com/products/ibm-i)
8
8
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
9
- [![Node.js](https://img.shields.io/badge/Node.js-≥20.6-green?logo=node.js&logoColor=white)](https://nodejs.org/)
9
+ [![Node.js](https://img.shields.io/badge/Node.js-≥22-green?logo=node.js&logoColor=white)](https://nodejs.org/)
10
10
  [![Docker](https://img.shields.io/badge/Docker-supported-blue?logo=docker&logoColor=white)](docs/docker.md)
11
11
  [![npm downloads](https://img.shields.io/npm/dm/mcp-server-db2i)](https://www.npmjs.com/package/mcp-server-db2i)
12
12
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/Strom-Capital/mcp-server-db2i/pulls)
@@ -14,6 +14,8 @@
14
14
 
15
15
  A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server for IBM DB2 for i (DB2i). This server enables AI assistants like Claude and Cursor to query and inspect IBM i databases using the JT400 JDBC driver.
16
16
 
17
+ Listed in the [MCP Registry](https://registry.modelcontextprotocol.io/) as `io.github.Strom-Capital/mcp-server-db2i`.
18
+
17
19
  ## Architecture
18
20
 
19
21
  AI clients connect to the MCP Server via stdio (IDEs) or HTTP (agents), which executes read-only queries against DB2 for i using the JT400 JDBC driver.
@@ -159,7 +161,7 @@ Once connected, you can ask the AI assistant:
159
161
  - IBM i V7R3 and later (V7R5 recommended)
160
162
  - `validate_query` and the `execute_query` parse check need `QSYS2.PARSE_STATEMENT` (IBM i 7.3 with Db2 PTF group SF99703 level 3, or 7.4 and later)
161
163
  - `get_related_objects` needs IBM i 7.3 Technology Refresh 9, IBM i 7.4 Technology Refresh 3, or a later release
162
- - Node.js 20.6 or higher
164
+ - Node.js 22 or higher
163
165
  - Java Runtime Environment (JRE) 11 or higher
164
166
  - MCP spec 2026-07-28, plus stateless clients from the 2025-era revisions (through 2025-11-25)
165
167
 
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "mcp-server-db2i",
3
- "version": "2.2.0",
3
+ "mcpName": "io.github.Strom-Capital/mcp-server-db2i",
4
+ "version": "2.3.0",
4
5
  "description": "MCP server for IBM DB2 for i (DB2i) database queries and metadata inspection",
5
6
  "type": "module",
6
7
  "main": "dist/index.js",
@@ -46,7 +47,7 @@
46
47
  "@modelcontextprotocol/server": "^2.1.0",
47
48
  "express": "^5.2.1",
48
49
  "hono": "^4.13.8",
49
- "node-jt400": "^6.0.1",
50
+ "node-jt400": "^7.0.1",
50
51
  "node-sql-parser": "^5.4.0",
51
52
  "pino": "^10.3.1",
52
53
  "pino-pretty": "^13.1.3",
@@ -67,7 +68,7 @@
67
68
  "vitest": "^4.1.11"
68
69
  },
69
70
  "engines": {
70
- "node": ">=20.6"
71
+ "node": ">=22"
71
72
  },
72
73
  "publishConfig": {
73
74
  "access": "public"