@shibbirweb/mcp-db-read-only 0.2.0 → 1.1.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.
- package/CHANGELOG.md +16 -0
- package/README.dockerhub.md +234 -289
- package/README.md +221 -320
- package/dist/cli/ViewerCommand.js +117 -0
- package/dist/index.js +16 -7
- package/dist/logging/viewer/LiveLogViewer.js +8 -0
- package/dist/logging/viewer/ViewerAssets.js +26 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@ Each release is published to npm and Docker Hub from the same tag. Where a versi
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.1.0]
|
|
10
|
+
|
|
11
|
+
Not yet published to npm, Docker Hub or the MCP Registry.
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- The log viewer's footer links to the GitHub repository, to star it, and to its issues page, to request a feature or report a problem. The links open in a new tab and send no referrer; the page still loads nothing from outside the viewer.
|
|
16
|
+
|
|
17
|
+
## [1.0.0]
|
|
18
|
+
|
|
19
|
+
First stable release. Not yet published to npm, Docker Hub or the MCP Registry.
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- `mcp-db-read-only viewer --dir <folder> --port <port>`: the live log viewer as its own process, reading a `DB_LOG_DIR` folder, with no MCP server or database. Run it in a terminal so the servers an MCP client starts only write logs and never hold a port. It exits with a clear error when the port is taken.
|
|
24
|
+
|
|
9
25
|
## [0.2.0]
|
|
10
26
|
|
|
11
27
|
Not yet published to npm, Docker Hub or the MCP Registry.
|