GoodNotes MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GoodNotes MCP Serverlist my notebooks"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GoodNotes MCP Server
An MCP (Model Context Protocol) server that reads handwritten notes from GoodNotes on macOS. It exposes your handwritten notebooks as structured data that AI assistants like Claude can read, search, and process.
How It Works
GoodNotes stores all data in local SQLite databases on macOS:
projection.sqlite— document metadata (names, folders, page ordering)fts.sqlite— full-text search index with OCR'd handwriting (multiple recognition candidates per word)
This MCP server reads those databases (read-only) and exposes 6 tools:
Tool | Description |
| List all notebooks with IDs, page counts, dates |
| Read OCR text from a notebook (supports page ranges) |
| Read OCR text from a single page |
| Full-text search across all handwritten notes |
| Find new/changed pages since last processing |
| Mark pages as processed (for pipeline workflows) |
OCR Candidate Format
GoodNotes OCR produces multiple word candidates. The server returns them separated by |:
Temple|Tomple|temple Voice|Voica recognitionYour AI assistant picks the best word using semantic context — much more accurate than taking the top candidate alone.
Related MCP server: Apple Notes MCP Server
Requirements
macOS (GoodNotes stores its databases locally)
GoodNotes installed and synced
Python 3.11+
uv (recommended) or pip
Installation
git clone https://github.com/withsivram/goodnotes-mcp.git
cd goodnotes-mcp
uv venv && uv pip install -e .Configuration
Claude Code
Add to your Claude Code MCP settings:
{
"mcpServers": {
"goodnotes": {
"type": "stdio",
"command": "/path/to/goodnotes-mcp/.venv/bin/python",
"args": ["/path/to/goodnotes-mcp/server.py"]
}
}
}Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"goodnotes": {
"command": "/path/to/goodnotes-mcp/.venv/bin/python",
"args": ["/path/to/goodnotes-mcp/server.py"]
}
}
}Environment Variables
Variable | Default | Description |
|
| Path to GoodNotes SQLite databases |
|
| Path to processing state file |
Usage
Once configured, your AI assistant can:
List your notebooks: "What notebooks do I have in GoodNotes?"
Read notes: "Read my latest notebook"
Search: "Search my handwritten notes for 'meeting action items'"
Process pipeline: Use
get_unprocessed+mark_processedto build automated workflows (e.g., handwriting → structured Obsidian notes)
Example: Processing Notes into Obsidian
The server is designed as a minimal data pipe — all intelligence (OCR resolution, categorization, structuring) happens in the AI assistant. A typical workflow:
get_unprocessed→ find new pagesread_notebook→ get raw OCR with word candidatesAI resolves
Temple|Tomple|temple→ "Temple" using contextAI categorizes and structures into markdown
Write to Obsidian (or any markdown-based system)
mark_processed→ track what's been handled
Architecture
iPad (GoodNotes) → iCloud Sync → macOS SQLite DBs → MCP Server → AI AssistantThe server is intentionally minimal (~390 lines, zero external dependencies beyond mcp). All intelligence lives in the AI layer, making the server easy to maintain and extend.
License
MIT License — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/withsivram/goodnotes-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server