Guide · Updated May 2026

How to use Claude Desktop with your Markdown notes.

Claude Desktop became powerful in 2025 when MCP — the Model Context Protocol — landed. Suddenly your $20/month Claude subscription could read files, run tools, and act on your local system. The most useful version of that, by a wide margin, is "let Claude read my notes." Here's how, in two flavors: the no-config Eyrie path, and the manual filesystem-server path.

TL;DR

Two paths

Easy (recommended): install Eyrie, click "Install in Claude Desktop" in Settings → MCP. Claude can now search your vault, read files, propose edits, and cite sources — through Eyrie's purpose-built MCP server that understands vaults, links, and tags.

Manual: install Anthropic's reference @modelcontextprotocol/server-filesystem and point it at your notes folder. Claude can read and write files. No vault semantics — Claude sees a generic filesystem.

What is MCP, briefly?

Model Context Protocol is an open spec (released by Anthropic in late 2024) that lets AI clients like Claude Desktop talk to external "servers" that provide tools and data. Think of it as a USB port for AI clients — the client doesn't need to know in advance what's plugged in, it just discovers the available tools and uses them.

For Markdown notes, the relevant MCP servers are:

Path A: Eyrie's one-click setup.

  1. Download Eyrie and open it.
  2. Open the folder containing your Markdown notes (Obsidian vault, exported Notion folder, or any directory of .md files).
  3. Settings → MCP → click "Install in Claude Desktop."
  4. Eyrie writes the right config into ~/Library/Application Support/Claude/claude_desktop_config.json.
  5. Restart Claude Desktop. You'll see Eyrie's tools in the MCP tools list.

What Claude can now do:

Path B: Manual filesystem server.

If you don't want Eyrie or you're not on a Mac, you can use Anthropic's reference filesystem server.

  1. Make sure Node.js is installed (node --version should print 18+).
  2. Open ~/Library/Application Support/Claude/claude_desktop_config.json in a text editor.
  3. Add this configuration (replace /Users/you/Notes with your actual notes path):
{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/Users/you/Notes"
      ]
    }
  }
}
  1. Restart Claude Desktop.
  2. You should see filesystem tools available — Claude can list, read, write, search files in that folder.

What you lose compared to Eyrie: no semantic search (just file listing and grep), no backlink awareness, no diff-before-write approval (Claude writes directly), no tag aggregation, no URL fetching.

What works well, what doesn't.

Works well:

Doesn't work as well:

Privacy notes.

When Claude Desktop reads a note via MCP, the contents of that note are sent to Anthropic's API as part of the conversation. The whole note. If you have notes you don't want Anthropic to ever see, scope your MCP server to a subdirectory that excludes them, or use Eyrie's file-allowlist in Settings → MCP → Advanced.

None of this is unique to MCP — any AI integration with your notes has the same trust model. But it's worth understanding before pointing Claude at your most private folder.

One click, then everything works.

If you're already paying for Claude, Eyrie's $79 is the cheapest way to turn your notes into a real knowledge base.

Try Eyrie for Mac →

FAQ

Does this work with Claude Pro or do I need API access?
Claude Pro (the $20/month consumer plan) includes MCP support. You don't need separate API access — your Pro subscription is the AI brain, Eyrie is the bridge to your notes.
Can I use this with Claude Code (the CLI agent)?
Yes — Claude Code reads the same MCP config. Eyrie's "Install" button supports it as a target. Useful for AI-assisted note refactoring from the terminal.
What about Cursor or Windsurf?
Same pattern. Eyrie's Settings → MCP detects which clients you have installed and offers to configure each. Cursor and Windsurf both speak MCP.
Will my edits get auto-committed somewhere?
No. Eyrie's MCP server proposes edits as diffs that show up in the app for your approval. Nothing writes to disk until you approve. The filesystem-server path is more permissive — Claude writes directly.
How much does this cost in API tokens?
A typical "search my notes and answer a question" round-trip is 2,000-10,000 input tokens depending on how much context Claude pulls. At Claude Sonnet rates, that's a few cents. Included in your Pro subscription up to the rate limits.
What if I have notes on iCloud Drive?
Works fine — Eyrie reads from any folder you have permission to access, including iCloud Drive paths. The same applies to Dropbox, Syncthing, etc.