loading…
Search for a command to run...
loading…
Bridges Claude Code and other MCP clients to RemNote, enabling users to manage their knowledge base through natural language. It supports creating, searching, a
Bridges Claude Code and other MCP clients to RemNote, enabling users to manage their knowledge base through natural language. It supports creating, searching, and updating notes, as well as appending content to daily journals via a dedicated bridge plugin.
MCP server that bridges AI agents (e.g. Claude Code) to RemNote via the RemNote Automation Bridge plugin.
If you run into any issues, please report them here.
The RemNote MCP Server enables AI assistants like Claude Code to interact directly with your RemNote knowledge base through the Model Context Protocol (MCP). Create notes, hierarchical markdown trees, and RemNote-native flashcards; search and read your knowledge base; update existing notes; and maintain your daily journal, all through conversational commands.
For some agentic workflows or CLI-first automation, the companion app
remnote-cli may be a better fit than running a full MCP server.
In particular, coding harnesses (Claude Code, GitHub Copilot CLI, Codex CLI, etc.) can use remnote-cli with
zero config — paste one prompt that loads the skill file and the agent handles the rest. See
Use RemNote from Any Coding Harness.
See AI agent examples in action with RemNote: View Demo →
This system consists of two separate components that work together:
Both components are required for AI integration with RemNote.
For the detailed bridge connection lifecycle, retry phases, and wake-up triggers, use the bridge repo as the source of truth: Connection Lifecycle Guide.
AI agents (HTTP) ↔ MCP HTTP Server :3001 ↔ WebSocket Server :3002 ↔ RemNote Plugin ↔ RemNote
The server acts as a bridge:
Multi-Agent Support: Multiple AI agents can connect simultaneously to the same RemNote knowledge base. Each agent gets its own MCP session while sharing the WebSocket bridge.
Remote Access: By default, the server binds to localhost (127.0.0.1) for local AI agents. Cloud-based services like Claude Desktop and Claude Cowork require remote access—use tunneling tools like ngrok to expose the HTTP endpoint securely. The WebSocket connection always stays local for security. See Remote Access Guide for setup.
Version compatibility (
0.xsemver): install aremnote-mcp-serverversion compatible with your installed RemNote Automation Bridge plugin version. See the Bridge / Consumer Version Compatibility Guide.
npm install -g remnote-mcp-server
Install the RemNote Automation Bridge plugin in your RemNote app.
Currently available from GitHub; registration in the RemNote marketplace is pending approval. Configure the plugin
to connect to ws://127.0.0.1:3002.
remnote-mcp-server
Expected output:
RemNote MCP Server v0.2.1 listening { wsPort: 3002, httpPort: 3001 }
Keep this terminal running.
0.x semver)| Tool | Description |
|---|---|
remnote_create_note |
Create notes, markdown trees, or flashcards with title, content, parent, and tags |
remnote_search |
Search knowledge base with full-text search and parent-context metadata; tags remain optional and SDK-limited |
remnote_search_by_tag |
Search by tag with ancestor-context resolution |
remnote_read_note |
Read note by ID with metadata and markdown or structured content; readable tags remain SDK-limited |
remnote_update_note |
Update title, append/replace content, or modify tags |
remnote_append_journal |
Append hierarchical content to today's daily document |
remnote_read_table |
Read Advanced Table columns, rows, and typed property metadata |
remnote_get_playbook |
Get recommended MCP usage/navigation playbook |
remnote_status |
Check connection status and statistics |
Tools that declare an outputSchema return MCP structuredContent plus a JSON content text block for compatibility.
See the MCP tools specification for the
protocol contract.
See the Tools Reference for detailed usage and examples.
Create notes:
Create a note about "Project Ideas" with content:
- AI-powered note taking
- Personal knowledge management
Search:
Search my RemNote for notes about "machine learning"
Update notes:
Add a tag "important" to note abc123
Journal entries:
Add to my journal: "Completed the RemNote MCP integration"
See the Tools Reference for more examples.
REMNOTE_HTTP_PORT - HTTP MCP server port (default: 3001)REMNOTE_HTTP_HOST - HTTP server bind address (default: 127.0.0.1)REMNOTE_WS_PORT - WebSocket server port (default: 3002)remnote-mcp-server --http-port 3003 --ws-port 3004
After changing ports, update your MCP client configuration and RemNote plugin settings.
See CLI Options Reference for all options.
Server won't start:
lsof -i :3001 and lsof -i :3002which remnote-mcp-serverPlugin won't connect:
ws://127.0.0.1:3002lsof -i :3002Tools not appearing:
claude mcp list0.x minor versions may break); see the
Bridge / Consumer Version Compatibility
GuideSee the Troubleshooting Guide for detailed solutions.
Development setup:
Version compatibility tip: when testing against a local or marketplace-installed bridge plugin, use a server checkout/tag compatible with that bridge plugin version (see the Bridge / Consumer Version Compatibility Guide).
git clone https://github.com/robert7/remnote-mcp-server.git
cd remnote-mcp-server
npm install
npm run build
npm link
Development workflow:
npm run dev # Watch mode with hot reload
npm test # Run test suite
./code-quality.sh # Run all quality checks
See the Development Setup Guide for complete instructions.
Pull requests that affect bridge-consumer behavior should follow the shared PR rules in the bridge repo: Pull Request Guide. In particular, keep bridge/server/CLI parity for shared functionality changes and link related PRs across the affected repos.
For the canonical workflow for updating and running shared live integration coverage, see the Integration Testing Guide.
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"remnote-mcp-server": {
"command": "npx",
"args": []
}
}
}