MCP is the power-socket standard between Claude Desktop and your tools. Instead of ten proprietary integrations, app and tool speak the same protocol, and you connect mail, calendar or the file system directly instead of copying and pasting.
Understanding the configuration file
A single file controls which servers Claude Desktop knows about: claude_desktop_config.json. On macOS it lives under ~/Library/Application Support/Claude, on Windows under %APPDATA%\Claude, on Linux under ~/.config/Claude.
One entry per server, with a name, a command and arguments. Environment variables are optional, as is a different transport. After every change the app has to be restarted completely, on macOS, closing the window is not enough.
Run a JSON lint before you activate anything. A single missing comma makes the entire server list disappear.
Six servers I most often start with
Filesystem server. Claude reads and writes inside a clearly bounded folder. Only ever grant access to one explicitly chosen path.
GitHub or GitLab server. Repository context, pull requests, issues, a dedicated bot account with minimal rights is mandatory here.
Notion or Confluence server. Read from and write to the knowledge base. Sort out page permissions first, otherwise Claude will overwrite areas it should not touch.
Gmail or Outlook server. Search the mailbox and file drafts. Start read-only, and enable sending only once the ground rules are in place.
Google Drive or OneDrive server. Summarize PDFs, query spreadsheets, compare versions. Never expose the whole drive.
Jira or Linear server. Bring tickets along as context. Prefer read tokens, and allow writing only for clearly scoped tasks.
When the hammer icon stays empty
Four failure patterns account for 90 % of cases in practice.
A JSON syntax error. One forgotten comma or one duplicated bracket is enough. Run the file through a JSON linter before saving.
The wrong path to the executable. Use absolute paths, not relative ones. On macOS and Linux, check the execute permissions.
Missing environment variables. Tokens and paths belong in the env block of the server configuration. The app does not rely on your shell profile.
The server hangs on startup. Check the log file for a process waiting on input. A common cause is an interactive OAuth flow that has to be completed once.
Frequently asked questions
What is MCP in Claude Desktop?
MCP is the shared standard between Claude Desktop and your tools. Instead of many proprietary integrations, app and tool speak the same protocol.
Which file controls the MCP servers?
The file claude_desktop_config.json. One entry per server with name, command and arguments. After every change the app must restart completely.
Why did my server list disappear after an edit?
Usually a syntax error in the JSON file. A single missing comma is enough. Always run a JSON lint before activating.
Which MCP servers are a good start?
Often Filesystem, GitHub or GitLab, Notion or Confluence, and Gmail or Outlook. Enable each one with minimal rights and clearly scoped access.
