Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Bridges RemNote knowledge base with AI assistants via MCP, allowing AI to read, create, search, and update notes in your personal knowledge management system.

README.md

RemNote MCP Bridge

Connect RemNote to AI assistants (Claude, GPT, etc.) via the Model Context Protocol (MCP). This project enables bidirectional communication, allowing AI to read and write directly to your RemNote knowledge base.

!Status !License

What is MCP?

Model Context Protocol is an open standard by Anthropic that allows AI assistants to interact with external tools and data sources. With this bridge, your AI assistant becomes a true PKM companion.

Features

Core Capabilities

  • Create Notes - AI can create new notes with titles, content, and tags
  • Search Knowledge Base - Full-text search across all your Rems
  • Read Notes - Access note content and hierarchical children
  • Update Notes - Modify existing notes, append content, manage tags
  • Daily Journal - Append entries to today's daily document

Plugin Features

  • Auto-tagging - Automatically tag notes created via MCP (configurable)
  • Session Statistics - Track created/updated/journal entries/searches
  • Action History - View last 10 MCP actions with timestamps
  • Configurable Settings - Customize behavior through RemNote settings
  • Real-time Status - Connection status indicator in sidebar widget

⚠️ Important: Deploy Your Own Server

Security Notice: Each user must deploy their own MCP server instance. Do not share server URLs between users, as this could expose your RemNote data to others.

Quick Start Options

Option A: Local Development (Recommended for testing)

  • Server runs on your computer
  • No cloud deployment needed
  • Works with Claude Desktop only

Option B: Cloud Deployment (Required for Claude Mobile)

  • Deploy to Railway, Render, or similar
  • Enables Claude Mobile access
  • Each user needs their own deployment

See server/README.md for detailed deployment instructions.

Installation

1. Install the RemNote Plugin

Option A: Marketplace (once approved)

  • Search for "MCP Bridge" in RemNote's Plugin marketplace

Option B: Development Mode ``bash git clone https://github.com/AlexHagemeister/remnote-mcp-bridge.git cd remnote-mcp-bridge npm install npm run dev `` Then in RemNote: Settings → Plugins → Build → Develop from localhost

2. Deploy Your MCP Server

⚠️ Critical: Each user must deploy their own server instance for security.

Option A: Local Server (Easiest)

cd server
npm install
npm run dev

Server runs at http://localhost:3002

Option B: Railway Deployment (For Claude Mobile)

  1. Fork this repository to your GitHub account
  2. Deploy to Railway:
   cd server
   railway login
   railway init
   railway up
  1. Note your URL: https://your-app-name.up.railway.app

See server/README.md for detailed deployment guides including Render, Fly.io, and Docker.

3. Configure RemNote Plugin

In RemNote: Settings → Plugins → MCP Bridge

Set WebSocket server URL to:

  • Local: ws://127.0.0.1:3002
  • Railway: wss://your-app-name.up.railway.app

4. Configure Your AI Assistant

For Claude Desktop/Web

Go to Settings → Connectors → Add custom connector

Enter your server URL:

  • Local: http://localhost:3002/sse
  • Railway: https://your-app-name.up.railway.app/sse

For Claude Mobile

Add custom connector with your Railway URL: `` https://your-app-name.up.railway.app/sse ``

Note: Claude Mobile requires a cloud-deployed server (Railway, Render, etc.)

Configuration

Access plugin settings in RemNote via Settings > Plugins > MCP Bridge:

| Setting | Description | Default | |---------|-------------|---------| | Auto-tag MCP notes | Add a tag to all AI-created notes | true | | Auto-tag name | Tag name for AI-created notes | MCP | | Journal entry prefix | Prefix for journal entries | [Claude] | | Add timestamp to journal | Include time in journal entries | true | | WebSocket server URL | MCP server connection URL | ws://127.0.0.1:3002 | | Default parent Rem ID | Parent for new notes (empty = root) | `` |

MCP Tools Available

Once connected, your AI assistant can use these tools:

| Tool | Description | |------|-------------| | remnote_create_note | Create a new note with title, content, parent, tags. Optional markAs to create as document or folder. | | remnote_search | Search the knowledge base with query and filters | | remnote_read_note | Read a note's content and children by ID | | remnote_update_note | Update title, append content, add/remove tags. Optional markAs to convert to document or folder. | | remnote_append_journal | Add an entry to today's daily document | | remnote_status | Check connection status |

Example Usage

Once everything is connected, you can ask your AI assistant things like:

  • "Create a note about the meeting we just had"
  • "Search my notes for information about project X"
  • "Add a journal entry: Finished the MCP integration today!"
  • "Find all my notes tagged with 'Ideas' and summarize them"
  • "Update my 'Reading List' note with this new book"

Architecture

┌─────────────────┐     SSE/HTTP       ┌─────────────────┐
│   Claude App    │◄──────────────────►│   MCP Server    │
│ (Mobile/Desktop)│    /sse endpoint   │ (server/ dir)   │
└─────────────────┘                    └────────┬────────┘
                                               │
                                          WebSocket
                                          wss://:PORT
                                               │
                                       ┌───────▼────────┐
                                       │ RemNote Plugin │
                                       │  (In browser)  │
                                       └───────┬────────┘
                                               │
                                          Plugin SDK
                                               │
                                       ┌───────▼────────┐
                                       │    RemNote     │
                                       │ Knowledge Base │
                                       └────────────────┘

The MCP server bridges two protocols:

  • SSE (Server-Sent Events) for Claude clients
  • WebSocket for the RemNote plugin running in your browser

Development

Plugin (runs in RemNote)

# install dependencies
npm install

# run in dev mode (hot reload)
npm run dev

# build for production
npm run build
# output: PluginZip.zip

Server (runs on Railway or locally)

cd server

# install dependencies
npm install

# run in dev mode
npm run dev

# build
npm run build

# run production
npm start

Troubleshooting

Plugin shows "Disconnected"

  • Ensure YOUR MCP server is running (local or deployed)
  • Check the WebSocket URL in RemNote plugin settings:
  • Local: ws://127.0.0.1:3002
  • Railway: wss://your-app-name.up.railway.app (use YOUR deployment URL)
  • Verify your server is accessible: curl https://your-app-name.up.railway.app/health
  • Look for errors in RemNote's developer console (Cmd+Option+I)

"Invalid event setCustomCSS" errors

  • These are cosmetic errors from development mode
  • They don't affect functionality
  • They won't appear in production builds

Notes not appearing

  • Check if a default parent ID is set (might be creating under a specific Rem)
  • Verify the auto-tag setting isn't filtering your view

Data Privacy

Important: This plugin sends your RemNote data to external services.

When you use this plugin:

  • RemNote data is transmitted to the MCP server you configure (local or remote)
  • The MCP server forwards this data to AI assistants (Claude, GPT, etc.) that you connect
  • Data includes note titles, content, tags, and hierarchical structure based on the tools invoked

What data is sent?

The plugin only sends data when:

  1. You explicitly invoke an MCP tool (create, search, read, update notes)
  2. The AI assistant requests access to your RemNote data

Data flow:

RemNote (your browser) → MCP Server (your deployment) → AI Assistant (Claude/GPT)

Security recommendations:

  • Deploy your own server - Never share server URLs with other users
  • Each user needs their own deployment - Sharing servers exposes data to others
  • Review tool calls before allowing AI to execute them
  • Use local server for maximum security (no internet transmission)
  • No data is stored by the MCP server - it only bridges connections
  • Keep your server URL private - Treat it like a password

Why each user needs their own server:

The MCP server acts as a bridge between your RemNote and AI assistants. If multiple users connect to the same server, their data could potentially be mixed or exposed to each other. Always deploy your own instance.

By using this plugin, you acknowledge that your RemNote data will be transmitted to the services you configure.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

MIT License - see LICENSE for details.

Links

| Resource | URL | |----------|-----| | GitHub Repo | https://github.com/AlexHagemeister/remnote-mcp-bridge | | Plugin Files (GitHub Pages) | https://alexhagemeister.github.io/remnote-mcp-bridge/ | | Server Deployment Guide | server/README.md |

Acknowledgments

---

Made with Claude - This plugin was developed in collaboration with Claude AI.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.