How to Add an MCP Server to Claude Desktop
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
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 of 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 notices that Claude's config file executes the npx command. This is very useful becuase it means that on startup, the comamnd 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!
Related Posts
Continue reading.
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)
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
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…