Skip to main content
📖 The AI Tool Bible

Apple Notes MCP vs MCP Fetch Server

A side-by-side look at pricing, capabilities, pros, cons, and our editorial scores.

 
Apple Notes MCP
MCP Servers
MCP Fetch Server
MCP Servers
TaglineLet Claude read your local Apple Notes over the Model Context Protocol.Official Model Context Protocol reference server that lets any MCP-compatible LLM fetch web pages and read them as clean markdown.
CategoryMCP ServersMCP Servers
PricingFree· Free / open-source (MIT). No hosted service; runs locally on your Mac.Free· Free and open source (MIT License). No hosted tier; you run it locally via uvx, pip, or Docker.
Model
Editorial score
Use cases
Personal knowledge retrieval from Apple NotesSearching decade-old meeting notes during a Claude chatPulling travel or recipe notes into a planning conversationSummarising a specific note by titleBuilding a local MCP toolchain alongside filesystem and browser serversReference implementation for writing your own macOS SQLite-backed MCP server
Reading documentation pages inside Claude DesktopGrabbing a GitHub README before scaffolding a projectSummarising a long article for a chat agentChecking a package changelog during code reviewAnswering questions from a linked spec section by sectionFeeding a URL into an MCP-driven research agentPulling clean markdown for a note-taking workflowVerifying a citation URL inside an editorial pipeline
Pros
  • Genuinely local: reads the on-disk SQLite database directly, so notes never leave your Mac
  • Trivial install via uv/uvx and a short claude_desktop_config.json block
  • Exposes the three operations that matter most — list, read, search — with a clean MCP surface
  • MIT-licensed Python, small enough to audit or fork in an afternoon
  • Works with any MCP client, not just Claude Desktop, so it composes with other servers
  • No API keys, no subscriptions, no accounts — zero ongoing cost
  • Official reference implementation maintained in the modelcontextprotocol/servers repo — tracks the spec and won't rot behind third-party churn.
  • Zero-install path via `uvx mcp-server-fetch`; Docker image and pip package also available for sandboxed or reproducible setups.
  • HTML-to-markdown conversion produces context-window-friendly output instead of raw tag soup.
  • `max_length` + `start_index` let a model chunk through long pages without blowing its context.
  • Optional Node.js fallback swaps in a more robust HTML simplifier when present.
  • First-class configuration for User-Agent, robots.txt obedience, and outbound proxy — practical knobs for real-world scraping etiquette.
  • Works out of the box with every major MCP client (Claude Desktop, Claude Code, VS Code, Cursor, Zed, Continue).
Cons
  • Read-only: cannot create, edit, or append notes from within Claude
  • Skips password-protected notes entirely (ZISPASSWORDPROTECTED is unhandled)
  • No attachment content, no checklist state, no pinned-note filtering, no iCloud sync awareness
  • macOS-only by design, and requires granting Full Disk Access to the runner
  • Repository is archived by the maintainer — bug fixes and new features are unlikely without a fork
  • Search is basic keyword matching against the SQLite text, not semantic retrieval
  • No JavaScript rendering — SPAs, Cloudflare-challenged pages, and content loaded after DOMContentLoaded come back empty or as a shell.
  • No built-in anti-bot handling; sites that block plain HTTP clients (many news sites, LinkedIn, X) will 403.
  • Security caveat called out in the README: the server can reach local/internal IPs, so it is a genuine SSRF risk if exposed to an untrusted model or user.
  • Single tool, single verb — for crawling, sitemap walks, or extracting structured data you need a heavier server like Firecrawl-MCP or a Playwright-based one.
  • Truncation defaults to 5,000 characters; models that don't understand `start_index` can silently miss content below the fold.
Websitegithub.comgithub.com
Pick Apple Notes MCP if
  • Genuinely local: reads the on-disk SQLite database directly, so notes never leave your Mac
  • Trivial install via uv/uvx and a short claude_desktop_config.json block
  • Exposes the three operations that matter most — list, read, search — with a clean MCP surface
  • MIT-licensed Python, small enough to audit or fork in an afternoon
Pick MCP Fetch Server if
  • Official reference implementation maintained in the modelcontextprotocol/servers repo — tracks the spec and won't rot behind third-party churn.
  • Zero-install path via `uvx mcp-server-fetch`; Docker image and pip package also available for sandboxed or reproducible setups.
  • HTML-to-markdown conversion produces context-window-friendly output instead of raw tag soup.
  • `max_length` + `start_index` let a model chunk through long pages without blowing its context.