Notebook Server
FreeNot checkedEnables to create notebooks and notes with tags, and perform full-text search across notes using FTS5 syntax, all stored locally in SQLite.
About
Enables to create notebooks and notes with tags, and perform full-text search across notes using FTS5 syntax, all stored locally in SQLite.
README
A simple Model Context Protocol server for creating notebooks and notes with tags and full-text search. Notes are stored in a single SQLite database with an FTS5 index for search — no external services required.
Tools
| Tool | Description |
|---|---|
create_notebook |
Create a notebook (name, optional description). |
create_note |
Add a note to a notebook (notebook, title, content, optional tags). |
read_note |
Read a full note by note_id. |
update_note |
Update a note's title, content, and/or tags (only provided fields change). |
search_notes |
Full-text search over titles, content, and tags; filter by notebook and/or tag. Supports FTS5 syntax (AND, OR, NOT, "exact phrase", prefix*); queries that aren't valid FTS5 syntax (e.g. e-mail) are matched as literal words instead. |
Errors (duplicate notebook, missing note, invalid arguments) are raised as
exceptions, so MCP clients receive them as proper tool errors (isError), not
as text that looks like a successful result.
Quick start (no clone needed)
The only prerequisite is uv. The commands below are copy-pasteable as-is — no paths to edit.
Claude Code:
claude mcp add notebook -- uvx --from git+https://github.com/lucidbard/notebook-mcp-server notebook-mcp
Claude Desktop — add to claude_desktop_config.json
(Settings → Developer → Edit Config), then restart the app:
{
"mcpServers": {
"notebook": {
"command": "uvx",
"args": ["--from", "git+https://github.com/lucidbard/notebook-mcp-server", "notebook-mcp"]
}
}
}
Try it
Ask your client something like:
Create a notebook called "ideas", then save a note in it titled "Search UX" tagged
uxandsearch, with a few thoughts on query autocomplete.
Then later:
Search my notes for anything about autocomplete.
The model will call create_notebook, create_note, and search_notes for you.
Where your notes live
All data is one SQLite file at ~/.notebook-mcp/notebook.db (created on first
run). Back up that file to back up your notes; delete it to start fresh. Set
the NOTEBOOK_DB environment variable to use a different location — handy for
keeping separate databases per project.
Installing from a clone
If you'd rather not run from GitHub directly (Python 3.10+ required):
git clone https://github.com/lucidbard/notebook-mcp-server.git
cd notebook-mcp-server
pip install .
claude mcp add notebook -- notebook-mcp
pip install . puts a notebook-mcp command on your PATH, so the client
config never needs a file path. (If you do point a client at the script
directly, use the absolute path to notebook_server.py — placeholder
paths like /path/to/... fail to connect, and Git Bash silently rewrites
them into C:/Program Files/Git/... on Windows.)
Development
pip install -r requirements.txt
python notebook_server.py # run the server (MCP over stdio)
python test_fixes.py # tool, error-path, and search tests
python stdio_test.py # end-to-end test over MCP stdio
python stdio_test.py uvx --from . notebook-mcp # same, against the packaged install
Both test scripts use a throwaway temporary database — they never touch
~/.notebook-mcp/notebook.db.
Install Notebook Server in Claude Desktop, Claude Code & Cursor
unyly install notebook-mcp-serverInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add notebook-mcp-server -- uvx notebook-mcp-serverFAQ
Is Notebook Server MCP free?
Yes, Notebook Server MCP is free — one-click install via Unyly at no cost.
Does Notebook Server need an API key?
No, Notebook Server runs without API keys or environment variables.
Is Notebook Server hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Notebook Server in Claude Desktop, Claude Code or Cursor?
Open Notebook Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
by wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
by madhurprashPostgres
Query your database in natural language
by AnthropicPostgreSQL
Read-only database access with schema inspection.
by modelcontextprotocolCompare Notebook Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All data MCPs
