Guide · Updated May 2026

MCP, explained — and the best MCP clients on Mac.

Model Context Protocol (MCP) is the standard that turned Claude Desktop from a chat window into something that can actually do work on your machine. As of 2026, six MCP clients on Mac are worth knowing. Here's what MCP is in plain English, why it matters for note-taking, and which clients to use.

TL;DR

The 30-second version

MCP is an open spec (released by Anthropic, late 2024) that lets AI clients call external tools and access external data through a standard protocol. It's USB for AI.

The best MCP clients on Mac in 2026: Claude Desktop (general use), Cursor (coding), Windsurf (coding), Cline (free + open source), Continue (VS Code-native), Zed (lightweight). All speak the same protocol, so a tool you build for one works in all six.

What MCP actually is.

Before MCP, every AI client that wanted to access tools (files, APIs, databases) had to build that integration into the client itself. ChatGPT had its custom "plugins" framework. Claude had its tool-use API. Cursor had its agentic workflow. None of them talked to each other.

MCP changes that. It defines a wire protocol where:

The same server works in any client. Build a notes server like Eyrie's once, and it shows up in Claude Desktop, Cursor, Windsurf, and the rest — no per-client integration work.

Why it matters for notes.

The single most useful MCP server, for most knowledge workers, is one that points an AI client at your local files. Suddenly:

Without MCP, you copy-paste between apps. With MCP, the AI just opens the file. The friction reduction is dramatic once you've tried it.

The Mac MCP clients, ranked.

01

Claude Desktop

Free / Pro $20/mo
Best general-purpose MCP client

What it is. Anthropic's official desktop app, native macOS. The reference MCP client — every protocol improvement lands here first.

Strengths
  • Reference implementation, always current
  • Best UI for browsing MCP tool results
  • Strong tool-call approval flow
Weaknesses
  • Closed source
  • Restricted to Claude models
  • Setup requires editing a JSON config

Get it if: you want the canonical MCP experience and you already pay for Claude Pro. Setup guide for notes →

02

Cursor

Free / Pro $20/mo
Best for coding + notes

What it is. AI-first VS Code fork. Added MCP support in early 2025. Used by hundreds of thousands of developers daily.

Strengths
  • Best code-editing AI on this list
  • Model-agnostic (Claude, GPT-4o, Gemini)
  • Polished UI
Weaknesses
  • Designed for code, less suited to pure note workflows
  • Subscription pricing

Get it if: you code daily and want notes context available in your editor.

03

Windsurf

Free / Pro $15/mo
Best Cursor alternative

What it is. Codeium's MCP-capable IDE. Similar shape to Cursor but with a different design philosophy around the agent UX.

Strengths
  • Generous free tier
  • "Cascade" agent mode is excellent
  • Cleaner default UI than Cursor
Weaknesses
  • Smaller ecosystem than Cursor
  • Younger product, faster-moving = occasional breakage

Get it if: you want Cursor's capability with a different design feel.

04

Cline

Free / open source
Best open-source agent

What it is. VS Code extension that turns it into a coding agent with MCP support. Open source, BYO API key.

Strengths
  • Free, MIT-licensed
  • BYO any LLM (Claude, GPT, Gemini, local via Ollama)
  • Full agent mode
Weaknesses
  • Less polished than Cursor / Windsurf
  • Setup more involved

Get it if: you want the agent capability without paying a per-seat fee or sending data to a SaaS.

05

Continue.dev

Free / open source
Best VS Code-native

What it is. Open-source AI assistant for VS Code and JetBrains. Strong MCP support since v0.9.

Strengths
  • Lightweight, doesn't replace your editor
  • BYO LLM
  • Highly configurable
Weaknesses
  • Less of an "agent" — more of an assistant
  • Fewer built-in workflows than Cursor / Windsurf

Get it if: you love VS Code and just want AI features added.

06

Zed

Free
Best lightweight + native

What it is. Native Rust-based editor (Atom team's follow-up). Added MCP support in 2025. Blazing fast, beautifully designed.

Strengths
  • Native, faster than anything Electron-based
  • Beautiful collaboration features
  • Free
Weaknesses
  • Smaller community than VS Code-based options
  • MCP support is newer

Get it if: performance matters and you want a clean break from VS Code.

Building or installing MCP servers.

The interesting part of MCP is the servers, not the clients. A few servers worth knowing:

Eyrie's MCP server is what we think the "right shape" looks like for notes: it understands what a vault is (not just files), exposes tools that map to how knowledge workers actually think, and ships an approval UI so edits don't happen silently.

Privacy and the trust model.

Every MCP tool call sends data to the AI client's backend. If you're using Claude Desktop, that means Anthropic's servers see whatever your tools return. This is the same trust model as any AI integration — there's no magic privacy-preserving layer in MCP itself.

If that matters to you:

Try MCP without the JSON.

Eyrie's "Install in Claude Desktop / Cursor / Windsurf" button is the no-config path. 14 days free.

Try Eyrie for Mac →

FAQ

Do I need to be a developer to use MCP?
Not anymore. Eyrie's one-click setup configures the JSON for you. The manual path (filesystem server, etc.) still requires a text editor and 10 minutes of patience.
Does MCP work with ChatGPT?
Not yet. OpenAI has its own tool-use spec and hasn't adopted MCP as of May 2026. If you want MCP, you need a Claude / Cursor / Windsurf / Cline / Continue / Zed setup.
Can I write my own MCP server?
Yes — there are SDKs for TypeScript, Python, Swift, and a few other languages. The spec is at modelcontextprotocol.io. A useful first MCP server takes 1-2 hours.
What's the difference between MCP and OpenAI's "function calling"?
Function calling is the model-side primitive — how the LLM expresses "I want to call this tool." MCP is the wire protocol between clients and tool servers. They complement each other; Claude Desktop's MCP support uses Claude's internal tool-use to call MCP servers.
Is MCP secure?
The protocol itself is fine. The risk is in the tools you install: an MCP server is essentially software you trust with the permissions you grant it. Same caution as installing any CLI tool from the internet.
What happens when an MCP server breaks?
Claude Desktop shows the tool as unavailable but otherwise keeps working. Restart the client to reconnect. Most servers are stable enough that this rarely happens; new ones in active development can be flakier.