Skip to main content
📖 The AI Tool Bible

Apple Notes MCP vs Linear MCP Server

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

 
Apple Notes MCP
MCP Servers
Linear MCP Server
MCP Servers
TaglineLet Claude read your local Apple Notes over the Model Context Protocol.Open-source MCP server bridging LLM agents to Linear's issue tracker (now deprecated in favour of Linear's official remote MCP)
CategoryMCP ServersMCP Servers
PricingFree· Free / open-source (MIT). No hosted service; runs locally on your Mac.Free· Free and open source (MIT). Requires a Linear account and personal API key; Linear itself is free for small teams, $8/user/mo Standard, $14/user/mo Plus.
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
Filing bugs from Claude Desktop or Cursor without leaving the editorAgent-driven triage of the inbox projectBulk relabeling or reprioritising issues via natural languageStandup summaries of a user's assigned Linear workAdding comments to tickets from a coding agent's PR reviewReference implementation for building a custom Linear 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
  • Open source (MIT) and small enough to read end-to-end in an afternoon
  • One-line install via Smithery or straight npx in Claude Desktop config
  • Covers the create / update / search / comment loop that 90% of ticket workflows need
  • Works with any MCP client, not just Claude Desktop (Cursor, Zed, Continue, custom agents)
  • Clear tool schemas make it a good reference implementation for building your own MCP servers
  • Uses Linear's official GraphQL API, so permissions and audit trails stay intact
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
  • Officially deprecated by its author in favour of Linear's own remote MCP server at mcp.linear.app/sse
  • Runs as a local stdio process, so it has to be installed on every workstation and cannot be shared across a team
  • Uses a personal API key, meaning every action shows up as the key owner rather than the actual LLM user
  • Tool coverage is narrower than the official server: no cycles, projects, roadmaps, or workflow state management
  • Error handling and rate-limit backoff are minimal; heavy agent loops can trip Linear's API limits
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 Linear MCP Server if
  • Open source (MIT) and small enough to read end-to-end in an afternoon
  • One-line install via Smithery or straight npx in Claude Desktop config
  • Covers the create / update / search / comment loop that 90% of ticket workflows need
  • Works with any MCP client, not just Claude Desktop (Cursor, Zed, Continue, custom agents)