Skip to main content
📖 The AI Tool Bible

Apple Notes MCP vs YouTube MCP Server

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

 
Apple Notes MCP
MCP Servers
YouTube MCP Server
MCP Servers
TaglineLet Claude read your local Apple Notes over the Model Context Protocol.Model Context Protocol server that pulls YouTube subtitles into any MCP-capable LLM client.
CategoryMCP ServersMCP Servers
PricingFree· Free / open-source (MIT). No hosted service; runs locally on your Mac.Free· Free and open source (MIT). You only pay for whatever LLM sits on the other end of the MCP connection (Claude Desktop, Claude API, or any other MCP-capable client).
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
YouTube video summarisationTranscript extraction for note-takingTurning tutorial videos into written how-tosQuote and timestamp lookup across long talksNon-English caption translation via the LLMResearch on podcast and interview contentFeeding lecture transcripts into a study assistantReference implementation for building your own MCP server
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
  • Truly minimal install: one npm package plus yt-dlp, one JSON entry in your MCP client, done in under two minutes
  • No YouTube Data API key, no OAuth, no Google Cloud project, and no quota to burn through
  • Works on any video yt-dlp can reach, including auto-generated captions and non-English tracks
  • Runs entirely on your machine so transcripts never leave your box before the LLM sees them
  • MIT-licensed reference implementation that is frequently forked as a starting point for other MCP servers
  • Actively maintained by a well-known open-source developer (Anaïs Betts, author of mcp-installer)
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
  • Only returns subtitles: no video download, no thumbnail, no channel or metadata queries, no search
  • Requires yt-dlp installed and on PATH, which trips up users on locked-down corporate Windows machines
  • Silently useless on videos that have no captions at all (rare, but happens on new uploads)
  • yt-dlp itself is a moving target against YouTube's anti-bot measures, so occasional breakage until you update the binary
  • No built-in rate limiting or caching, so summarising a 200-video playlist in a loop will get your IP throttled
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 YouTube MCP Server if
  • Truly minimal install: one npm package plus yt-dlp, one JSON entry in your MCP client, done in under two minutes
  • No YouTube Data API key, no OAuth, no Google Cloud project, and no quota to burn through
  • Works on any video yt-dlp can reach, including auto-generated captions and non-English tracks
  • Runs entirely on your machine so transcripts never leave your box before the LLM sees them