You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,8 @@ Before installing and running the KDB-X MCP Server, ensure you have met the foll
66
66
-`npx` comes bundled with the [nodejs](https://nodejs.org/en) installer - available on Windows/Mac/Linux/WSL
67
67
- See [example configuration with streamable-http](#example-configuration-with-streamable-http)
68
68
69
+
> Note: ⚠️ KDB-X public preview has recently been extended. If you have installed KDB-X prior to Sept 30th 2025, you will receive an email notification about this update. Please update to the latest [KDB-X](https://kdb-x.kx.com/sign-in) to ensure uninterrupted access, valid through January 4, 2026
70
+
69
71
## Quickstart
70
72
71
73
To demonstrate basic usage of the KDB-X MCP Server, using an empty KDB-X database, follow the quickstart steps below.
@@ -438,6 +440,10 @@ The below tools can aid in the development, testing and debugging of new MCP too
438
440
439
441
## Troubleshooting
440
442
443
+
### KDB-X license expired
444
+
445
+
KDB-X public preview has recently been extended. If you have installed KDB-X prior to Sept 30th 2025, you will receive an email notification about this update. Please update to the latest [KDB-X](https://kdb-x.kx.com/sign-in) to ensure uninterrupted access, valid through January 4, 2026
446
+
441
447
### KDB-X connection error
442
448
443
449
Ensure that your KDB-X database is online and accessible on the specified kdb host and port.
self.logger.error("KDB-X SQL interface check: FAILED - KDB-X service does not have the SQL interface loaded. Load it by running .s.init[] in your KDB-X Session")
113
123
sys.exit(1)
114
-
ifnotconn('@[{2< count .ai};(::);{0b}]').py():
115
-
self.logger.error("KDB-X AI Libs check: FAILED - KDB-X service does not have the AI Libs loaded. Load it by running \l ai-libs/init.q in your KDB-X Session")
116
-
sys.exit(1)
117
124
else:
118
125
self.logger.info("KDB-X SQL interface check: SUCCESS - SQL interface is loaded")
self.logger.warning("KDB-X AI Libs check: NOT AVAILABLE - AI-powered tools (similarity_search, hybrid_search) will be disabled.")
131
+
self.logger.warning("To enable AI tools, load the KDB-X AI libraries by running: \l ai-libs/init.q in your KDB-X Session and then restart the MCP server")
132
+
else:
133
+
self.logger.info("KDB-X AI Libs check: SUCCESS - AI Libs are loaded, AI tools will be available")
0 commit comments