GoodNotes MCP Server

GoodNotes MCP Server

Enables reading and searching handwritten notes from GoodNotes on macOS, providing OCR text, search, and notebook management tools for AI assistants.

Category
Visit Server

README

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_notebooks List all notebooks with IDs, page counts, dates
read_notebook Read OCR text from a notebook (supports page ranges)
read_page Read OCR text from a single page
search_notes Full-text search across all handwritten notes
get_unprocessed Find new/changed pages since last processing
mark_processed 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 recognition

Your AI assistant picks the best word using semantic context — much more accurate than taking the top candidate alone.

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
GOODNOTES_DB_DIR ~/Library/Containers/com.goodnotesapp.x/Data/Library/Databases Path to GoodNotes SQLite databases
GOODNOTES_TRACKING_FILE ~/.goodnotes-mcp/processed.json Path to processing state file

Usage

Once configured, your AI assistant can:

  1. List your notebooks: "What notebooks do I have in GoodNotes?"
  2. Read notes: "Read my latest notebook"
  3. Search: "Search my handwritten notes for 'meeting action items'"
  4. Process pipeline: Use get_unprocessed + mark_processed to 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:

  1. get_unprocessed → find new pages
  2. read_notebook → get raw OCR with word candidates
  3. AI resolves Temple|Tomple|temple → "Temple" using context
  4. AI categorizes and structures into markdown
  5. Write to Obsidian (or any markdown-based system)
  6. mark_processed → track what's been handled

Architecture

iPad (GoodNotes) → iCloud Sync → macOS SQLite DBs → MCP Server → AI Assistant

The 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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured