remnote-mcp-server 0.9.0 → 0.10.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 +12 -3
- package/README.md +15 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic
|
|
6
6
|
Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.10.0] - 2026-03-18
|
|
11
|
+
|
|
12
|
+
### Documentation
|
|
13
|
+
|
|
14
|
+
- Updated `README.md` capability and MCP tool summaries to reflect hierarchical markdown and flashcard creation.
|
|
15
|
+
- Pointed server setup/troubleshooting docs to the bridge repo's connection lifecycle guide as the canonical connection reference.
|
|
16
|
+
|
|
8
17
|
## [0.9.0] - 2026-03-17
|
|
9
18
|
|
|
10
19
|
### Added
|
|
@@ -19,9 +28,9 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
19
28
|
### Documentation
|
|
20
29
|
|
|
21
30
|
- Clarified across setup guides that MCP clients must use HTTP transport (`http://localhost:3001/mcp`), not `stdio`.
|
|
22
|
-
-
|
|
23
|
-
|
|
24
|
-
- Replaced misleading plugin auto-reconnect wording with the current retry
|
|
31
|
+
- Updated the startup flow to reflect automatic bridge startup on plugin activation; opening the Automation Bridge
|
|
32
|
+
sidebar panel is now optional for status and manual reconnect.
|
|
33
|
+
- Replaced misleading plugin auto-reconnect wording with the current background retry plus manual-`Reconnect` behavior.
|
|
25
34
|
|
|
26
35
|
### Attribution
|
|
27
36
|
|
package/README.md
CHANGED
|
@@ -12,8 +12,9 @@ Bridge plugin](https://github.com/robert7/remnote-mcp-bridge).
|
|
|
12
12
|
## What is This?
|
|
13
13
|
|
|
14
14
|
The RemNote MCP Server enables AI assistants like Claude Code to interact directly with your RemNote knowledge base
|
|
15
|
-
through the Model Context Protocol (MCP). Create notes,
|
|
16
|
-
your daily journal
|
|
15
|
+
through the Model Context Protocol (MCP). Create notes, hierarchical markdown trees, and RemNote-native flashcards;
|
|
16
|
+
search and read your knowledge base; update existing notes; and maintain your daily journal, all through
|
|
17
|
+
conversational commands.
|
|
17
18
|
|
|
18
19
|
For some agentic workflows or CLI-first automation, the companion app
|
|
19
20
|
**[remnote-cli](https://github.com/robert7/remnote-cli)** may be a better fit than running a full MCP server.
|
|
@@ -33,6 +34,9 @@ This system consists of **two separate components** that work together:
|
|
|
33
34
|
|
|
34
35
|
**Both components are required** for AI integration with RemNote.
|
|
35
36
|
|
|
37
|
+
For the detailed bridge connection lifecycle, retry phases, and wake-up triggers, use the bridge repo as the source of
|
|
38
|
+
truth: [Connection Lifecycle Guide](https://github.com/robert7/remnote-mcp-bridge/blob/main/docs/guides/connection-lifecycle.md).
|
|
39
|
+
|
|
36
40
|
### How It Works
|
|
37
41
|
|
|
38
42
|
```text
|
|
@@ -55,11 +59,11 @@ connection always stays local for security. See [Remote Access Guide](docs/guide
|
|
|
55
59
|
|
|
56
60
|
## Features
|
|
57
61
|
|
|
58
|
-
- **Create Notes** - Create
|
|
59
|
-
- **Search Knowledge Base** -
|
|
60
|
-
- **Read Notes** - Retrieve note content with configurable
|
|
61
|
-
- **Update Notes** - Modify titles, append
|
|
62
|
-
- **Journal Entries** - Append timestamped entries
|
|
62
|
+
- **Create Notes & Flashcards** - Create simple notes, hierarchical markdown trees, or RemNote-native flashcards
|
|
63
|
+
- **Search Knowledge Base** - Run full-text searches or tag-based searches with ancestor context
|
|
64
|
+
- **Read Notes** - Retrieve note content in markdown or structured form with configurable traversal depth
|
|
65
|
+
- **Update Notes** - Modify titles, append or replace hierarchical content, and manage tags
|
|
66
|
+
- **Journal Entries** - Append timestamped daily entries, including hierarchical markdown content
|
|
63
67
|
- **Agent Playbook** - Return built-in navigation and safety guidance for MCP clients
|
|
64
68
|
- **Connection Status** - Check server and plugin connection health
|
|
65
69
|
|
|
@@ -109,6 +113,7 @@ Keep this terminal running.
|
|
|
109
113
|
- **[Bridge / Consumer Version Compatibility
|
|
110
114
|
Guide](https://github.com/robert7/remnote-mcp-bridge/blob/main/docs/guides/bridge-consumer-version-compatibility.md)**
|
|
111
115
|
\- Match server version to installed bridge plugin version (`0.x` semver)
|
|
116
|
+
- **[Bridge Connection Lifecycle](https://github.com/robert7/remnote-mcp-bridge/blob/main/docs/guides/connection-lifecycle.md)** - Canonical bridge connect/retry behavior
|
|
112
117
|
- **[Configuration Guide](docs/guides/configuration.md)** - Configure Claude Code CLI, Accomplish, and other clients
|
|
113
118
|
- **[ChatGPT Configuration Guide](docs/guides/configuration-chatgpt.md)** - Set up ChatGPT Apps with your MCP server
|
|
114
119
|
- **[Demo & Screenshots](docs/demo.md)** - See the server in action with different AI clients
|
|
@@ -134,12 +139,12 @@ Keep this terminal running.
|
|
|
134
139
|
|
|
135
140
|
| Tool | Description |
|
|
136
141
|
|---------------------------|------------------------------------------------|
|
|
137
|
-
| `remnote_create_note` | Create
|
|
142
|
+
| `remnote_create_note` | Create notes, markdown trees, or flashcards with title, content, parent, and tags |
|
|
138
143
|
| `remnote_search` | Search knowledge base with full-text search |
|
|
139
144
|
| `remnote_search_by_tag` | Search by tag with ancestor-context resolution |
|
|
140
|
-
| `remnote_read_note` | Read note by ID
|
|
145
|
+
| `remnote_read_note` | Read note by ID in markdown or structured form |
|
|
141
146
|
| `remnote_update_note` | Update title, append/replace content, or modify tags |
|
|
142
|
-
| `remnote_append_journal` | Append to today's daily document
|
|
147
|
+
| `remnote_append_journal` | Append hierarchical content to today's daily document |
|
|
143
148
|
| `remnote_get_playbook` | Get recommended MCP usage/navigation playbook |
|
|
144
149
|
| `remnote_status` | Check connection status and statistics |
|
|
145
150
|
|