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 filesystem directly, instead of by copy-paste.
Understanding the configuration file
A single file controls which servers Claude Desktop knows: claude_desktop_config.json. It lives on macOS under ~/Library/Application Support/Claude, on Windows under %APPDATA%Claude, on Linux under ~/.config/Claude.
One entry per server with name, command, and arguments. Optional environment variables, optional 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 activating. A single missing comma makes the entire server list disappear.
Six servers I most often start with
Filesystem server. Claude reads and writes in a clearly bounded folder. Only 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 and fill the knowledge base. Clarify page permissions beforehand, otherwise Claude overwrites sections.
Gmail or Outlook server. Search the mailbox and place drafts. Start read-only, send only once the rules are in place.
Google Drive or OneDrive server. Summarize PDFs, query tables, compare versions. Never expose the entire drive.
JIRA or Linear server. Bring tickets along as context. Prefer read tokens, write only for clearly defined tasks.
When the hammer icon stays empty
Four error patterns make up 90% of cases in practice.
JSON syntax error. A forgotten comma or a doubled bracket is enough. Throw it into a JSON linter before saving.
Wrong path to the executable. Use absolute paths, not relative ones. On macOS and Linux, check execution rights.
Missing environment variables. Tokens and paths belong in the env block of the server configuration. The app does not rely on the shell profile.
Server hangs on start. Check the log file for whether the process is waiting for input. Common cause: an interactive OAuth flow that has to be run 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.
