feat: add READ_ONLY mode to disable write tools#3
Merged
Conversation
lisboa-12
approved these changes
May 5, 2026
lisboa-12
approved these changes
May 5, 2026
fernandomurakami-cloud
approved these changes
May 5, 2026
When READ_ONLY=true, the server skips registration of write_note, edit_note, delete_note, and move_note. Only read tools are exposed via MCP, protecting vaults shared with multiple AI clients. Closes es617#1
078be84 to
1c2c9cd
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements the feature requested in #1.
READ_ONLY=trueenvironment variable supportwrite_note,edit_note,delete_note,move_noteread_note,list_notes,list_folders,list_tags,get_note_metadataMotivation
When exposing the MCP server to multiple AI clients, there is no server-level way to restrict write access. This flag lets operators expose a vault safely without relying on per-client filtering.
Usage
Set this environment variable before starting the server. No other configuration needed.
Changes
src/tools.ts: addedreadOnlyparameter toregisterTools; write tools are conditionally skippedsrc/main.ts: readsREAD_ONLYenv var and passes it toregisterToolsCloses #1