Skip to content
Houtini.
Contact
How-to Guides ·25 September 2025 · Updated: 14 August 2026

How to Add an MCP Server to Claude Desktop

Discuss and expand Ask ChatGPT Email LinkedIn

For almost all of us, the concept of adding an MCP to your AI assistant is completely new. This is ok, if you're reading this, I think you've come to the right place. I'm going to quickly and simply explain how to add an MCP server to…

For almost all of us, the concept of adding an MCP to your AI assistant is completely new. This is ok, if you're reading this, I think you've come to the right place. I'm going to quickly and simply explain how to add an MCP server to Claude Desktop.

You'll need Claude Desktop installed to follow along. If you're new to Claude, new accounts get a free week of Claude Code , and the same plan covers Desktop.

Open Claude Desktop

Your first port of call is to open Claude Desktop and navigate to Settings > Developer

MCP servers (already set up in my Claude Desktop)

To add an mcp server, click "Edit Config".

This will open the Claude AppData directory on your machine. Here's what that looks like:


Open claude_desktop_config.json

As I happen to be writing about Chrome's new dev tools MCP, let's add their MCP server reference:

{
  "mcpServers": {
    "chrome-devtools": {
      "command": "npx",
      "args": ["chrome-devtools-mcp@latest"]
    }
  }
}

When you're done, your Claude config file will look like this:


Save your config file, and close Claude.

Install Node.js

Most if not all of the MCP servers are Node based. It's a Javascript "runtime" that allows you to run Node packages. You might have spotted that we're about to run the @latest version of the Chrome Devtools MCP from their NPM (Node Package Manager) repository.

To make this happen, all you need to do is install Node.js :

You may have noticed that Claude's config file executes the npx command. This is very useful because it means that on startup, the command will check if the MCP package is installed. If it isn't, the package will be downloaded and installed directly from the npm repository.

It's easier than you think - to check that everything installed correctly open CMD and run:

node --version
npm --version
npx --version


When you're done, open Claude and give it a test:


And that's how to install your first MCP server!

By email

Get new posts by email.

Drop your email below and we will send you the next article when it lands. No spam, unsubscribe anytime.

Discuss and expand Ask ChatGPT Email LinkedIn
More like this

Continue reading.

How to Stop MCP Servers Eating Your PC: One Docker Gateway for Every Claude Client
How-to Guides

How to Stop MCP Servers Eating Your PC: One Docker Gateway for Every Claude Client

My MCP list grew until orphaned node.exe were quietly eating a 128GB workstation by mid-afternoon. Here's how I put every server behind one Docker gateway - node on bare metal gone, secrets in one gitignored file, and a single URL every Claude client points at. One evening's work you'll feel every day after.

How to Use the Gemini API (and Why I Run It Next to Claude)
How-to Guides

How to Use the Gemini API (and Why I Run It Next to Claude)

Get a Gemini API key, make your first call in curl and Python, dodge the thinking-token trap that returns an empty answer, and see why running Gemini next to Claude is the real unlock. Written from production - and the bills.

Claude Desktop Makes a Brilliant Coding Assistant - Here's How to Set It Up
Beginner's Guides

Claude Desktop Makes a Brilliant Coding Assistant - Here's How to Set It Up

Everyone says if you want AI coding help, you use Cursor. Or Cline. Or GitHub Copilot. Basically anything that hooks into your IDE with inline autocomplete and tab-completion magic. Claude Desktop? That's for chat, not code. I respectfully…

How to Do a Technical SEO Audit with Claude
AI Tools

How to Do a Technical SEO Audit with Claude

A free, step-by-step technical SEO audit with Claude: your Search Console history and a first-party crawl merged in one local database, ranked by recoverable clicks - the Screaming Frog alternative you run by conversation.

Claude Code API Key Security: A Guide to Token Hygiene
How-to Guides

Claude Code API Key Security: A Guide to Token Hygiene

The simplest possible setup that keeps your production tokens out of AI chat windows. 1Password CLI, op run, and the conversational discipline that makes the rest of it work.

Agentic Interoperability for Website Owners: AI User Experience (AI UX)
MCP

Agentic Interoperability for Website Owners: AI User Experience (AI UX)

I've been keeping a close eye on the emerging subject of "agentic interoperability" across all my recent build projects. In layman's terms, that's the ability for AI agents to do things for you on your behalf - particularly inside SaaS…