remnote-mcp-server 0.3.1 → 0.5.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 +56 -1
- package/LICENSE +1 -1
- package/README.md +112 -429
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +21 -0
- package/dist/cli.js.map +1 -1
- package/dist/config.d.ts +2 -0
- package/dist/config.js +6 -0
- package/dist/config.js.map +1 -1
- package/dist/http-server.d.ts +2 -1
- package/dist/http-server.js +5 -3
- package/dist/http-server.js.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/schemas/remnote-schemas.js +2 -2
- package/dist/schemas/remnote-schemas.js.map +1 -1
- package/dist/tools/index.d.ts +85 -0
- package/dist/tools/index.js +71 -4
- package/dist/tools/index.js.map +1 -1
- package/dist/websocket-server.d.ts +2 -1
- package/dist/websocket-server.js +5 -3
- package/dist/websocket-server.js.map +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,62 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.5.0] - 2026-02-21
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Added `outputSchema` metadata for `remnote_search` and `remnote_read_note`, including `detail`, `remType`, and
|
|
15
|
+
`cardDirection` response fields for AI clients.
|
|
16
|
+
- Search responses now include `detail`, `remType`, and `cardDirection`.
|
|
17
|
+
- Added end-to-end integration test tooling with `npm run test:integration` and a standalone
|
|
18
|
+
`./run-status-check.sh` helper.
|
|
19
|
+
- Added ChatGPT setup documentation with screenshots and linked it from quick-start/docs navigation.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Increased search default limit from 20 to 50 and maximum limit from 100 to 150.
|
|
24
|
+
- Reorganized setup docs to reduce overlap and centralize remote-access guidance.
|
|
25
|
+
|
|
26
|
+
### Removed
|
|
27
|
+
|
|
28
|
+
- Removed `preview` from search responses to align with bridge plugin output.
|
|
29
|
+
|
|
30
|
+
## [0.4.0] - 2026-02-14
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
|
|
34
|
+
- Host binding configuration for HTTP and WebSocket servers
|
|
35
|
+
- `--http-host` CLI option to control HTTP server binding address
|
|
36
|
+
- `REMNOTE_HTTP_HOST` environment variable for HTTP server binding
|
|
37
|
+
- Support for binding HTTP server to `0.0.0.0` for remote access (Docker, VPS deployments)
|
|
38
|
+
- Host validation in CLI with support for localhost, 127.0.0.1, 0.0.0.0, and valid IPv4 addresses
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- HTTP server can now bind to configurable host address (default: 127.0.0.1)
|
|
43
|
+
- Improved logging to show bound host addresses on startup
|
|
44
|
+
- Updated all tests to pass host parameters to server constructors
|
|
45
|
+
|
|
46
|
+
### Security
|
|
47
|
+
|
|
48
|
+
- WebSocket server host binding enforced to localhost (127.0.0.1) only - cannot be overridden
|
|
49
|
+
- Ensures RemNote plugin connection is never exposed remotely
|
|
50
|
+
|
|
51
|
+
### Documentation
|
|
52
|
+
|
|
53
|
+
- Streamlined README.md, created `docs/guides/` with focused guides
|
|
54
|
+
- Created dedicated configuration guides for each AI client (Claude Code, Accomplish, Claude Cowork)
|
|
55
|
+
- Fixed curl examples to include required `Accept: application/json, text/event-stream` header
|
|
56
|
+
- Corrected ngrok documentation: clarified 0.0.0.0 is for Docker/VPS, not needed for ngrok
|
|
57
|
+
- Enhanced demo documentation with multi-client examples (Claude Code, Accomplish, Claude Cowork)
|
|
58
|
+
|
|
59
|
+
### Internal
|
|
60
|
+
|
|
61
|
+
- Fixed intermittent test failures on GitHub Actions caused by race condition between HTTP server start and connection
|
|
62
|
+
readiness
|
|
63
|
+
- Fixed intermittent logger test failures on GitHub Actions caused by missing directory creation before file logger
|
|
64
|
+
instantiation
|
|
65
|
+
|
|
10
66
|
## [0.3.1] - 2026-02-12
|
|
11
67
|
|
|
12
68
|
### Fixed
|
|
@@ -150,7 +206,6 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
150
206
|
- Files field in package.json to explicitly control published files
|
|
151
207
|
- prepublishOnly script to ensure build before publishing
|
|
152
208
|
- Additional keywords for improved npm discoverability
|
|
153
|
-
- Coauthorship policy documented in CLAUDE.md
|
|
154
209
|
- Publishing documentation in docs/publishing.md for maintainers
|
|
155
210
|
|
|
156
211
|
### Fixed
|
package/LICENSE
CHANGED