Skip to content
Houtini.
Contact
How-to Guides ·25 September 2025

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.

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 Do a Technical SEO Audit with Claude
AI Tools

How to Do a Technical SEO Audit with Claude

A full technical SEO audit run by conversation in Claude Desktop: Search Console history and a first-party crawl merged into one prioritised, fix-writing report. The setup, the twelve prompts, the priority model, and the honest limits - walked through on a real site.

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…

Implementing WebMCP on a Recruitment Website
MCP

Implementing WebMCP on a Recruitment Website

Thinking about what, exactly, the future of a website "looks" like in the agentic era is a challenging proposition. It might be that in most cases, our future viewers/readers/customers can do everything, from their chatbot of preference…

Swapping the Engine: How to Run Claude Code on Local Silicon for Zero Pennies
How-to Guides

Swapping the Engine: How to Run Claude Code on Local Silicon for Zero Pennies

Claude Code's real power isn't the Anthropic model sitting behind it, it's the agentic : the file-system access, the tool use, the way it chains tasks together without you babysitting every step. I figured this out the expensive way. I ran…

A Beginner's Guide to Claude Computer Use
How-to Guides

A Beginner's Guide to Claude Computer Use

I've been letting Claude control my mouse and keyboard on and off to test this feature for a little while, and the honest answer is that it's simultaneously the most impressive and most frustrating AI feature I've used. It can navigate…