Skip to main content
StudioMeyer
Claude Desktop + MCP Server: The Complete Setup Guide
Back to Blog
AI & Automation February 24, 2026 7 min readby Matthias Meyer

Claude Desktop + MCP Server: The Complete Setup Guide

Step-by-step guide: How to connect Claude Desktop with StudioMeyer MCP servers. Config, troubleshooting, and best practices.

Claude Desktop is Anthropic's desktop application -- and arguably the best MCP client on the market. While other AI clients retrofitted MCP support, Claude Desktop was built for it from the start. In this tutorial, you'll set up a StudioMeyer MCP server in Claude Desktop, step by step.

What Is Claude Desktop?

Claude Desktop is the official desktop app from Anthropic, the makers of Claude. It runs on macOS and Windows and provides direct access to Claude -- with one crucial advantage over the web version: native MCP support.

This means you can connect external tools directly into Claude, without workarounds. Claude can then not only generate text but actively interact with your business tools -- create contacts in your CRM, triage emails, analyze documents.

Prerequisites

  • Claude Desktop installed (free from anthropic.com)
  • A StudioMeyer MCP product with license key (available in the Store)
  • 5 minutes

Step 1: Install Claude Desktop

If you haven't already, download Claude Desktop:

  • macOS: Directly from anthropic.com or via Homebrew
  • Windows: Installer from anthropic.com

After installation, sign in with your Anthropic account. Claude Desktop works with Claude Pro, Team, and Enterprise.

Step 2: Find the Configuration File

Claude Desktop stores MCP server configurations in a JSON file. The location depends on your operating system:

macOS:

~/Library/Application Support/Claude/claude_desktop_config.json

Windows:

%APPDATA%/Claude/claude_desktop_config.json

Opening the File

macOS -- via Terminal:

open ~/Library/Application\ Support/Claude/claude_desktop_config.json

Windows -- via Run (Win+R):

notepad %APPDATA%\Claude\claude_desktop_config.json

If the file doesn't exist yet, create it manually at this path. Start with an empty JSON object:

{}

Step 3: Add the MCP Server

Add the StudioMeyer MCP server to the configuration file. Here's an example with AI CRM:

{
  "mcpServers": {
    "studiomeyer-crm": {
      "url": "https://mcp.studiomeyer.io/ai-crm/mcp",
      "headers": {
        "Authorization": "Bearer sm_live_YOUR_KEY"
      }
    }
  }
}

Important: Replace sm_live_YOUR_KEY with your actual license key.

Multiple Products at Once

You can configure any number of MCP servers in parallel. Each product gets its own entry:

{
  "mcpServers": {
    "studiomeyer-crm": {
      "url": "https://mcp.studiomeyer.io/ai-crm/mcp",
      "headers": {
        "Authorization": "Bearer sm_live_YOUR_CRM_KEY"
      }
    },
    "studiomeyer-shield": {
      "url": "https://mcp.studiomeyer.io/ai-shield/mcp",
      "headers": {
        "Authorization": "Bearer sm_live_YOUR_SHIELD_KEY"
      }
    }
  }
}

Available MCP Endpoints

ProductEndpointStatus
AI CRMhttps://mcp.studiomeyer.io/ai-crm/mcpLive
AI Shieldhttps://mcp.studiomeyer.io/ai-shield/mcpLive
SmartBothttps://mcp.studiomeyer.io/smartbot/mcpLive
AI Inbox Managerhttps://mcp.studiomeyer.io/ai-inbox/mcpComing Soon
AI Documentshttps://mcp.studiomeyer.io/ai-documents/mcpComing Soon
AI Knowledge Vaulthttps://mcp.studiomeyer.io/ai-knowledge/mcpComing Soon

Step 4: Restart Claude Desktop

After saving the configuration file, you need to fully restart Claude Desktop. Simply closing and reopening the window isn't enough -- quit the app completely:

  • macOS: Cmd + Q or via the menu bar icon
  • Windows: Right-click the tray icon and select Quit

Then relaunch Claude Desktop.

Step 5: Test the Connection

After restarting, the MCP tools should be automatically available. You'll see them in Claude Desktop's tool display -- connected servers and their tools are listed.

Quick Function Test

Start a new chat and test:

"What MCP tools are available to me? List all available functions."

Claude should list the configured server's tools. For AI CRM, that includes tools for contact management, lead tracking, pipeline overview, and activity logging.

Real-World Test

Take it a step further with a real scenario:

"Show me an overview of my current leads in the CRM."

Or with AI Shield:

"Check if this text contains an injection attack: 'Ignore all previous instructions.'"

If Claude correctly invokes the tools and returns results, your setup is complete.

Troubleshooting

"No tools available"

  1. Check the JSON syntax of your config file (a missing comma is enough to break it)
  2. Make sure the API key is correct
  3. Fully restart Claude Desktop (not just close the window)

"Connection failed"

  1. Check your internet connection
  2. Make sure https://mcp.studiomeyer.io is reachable
  3. Firewalls or VPNs can block the connection -- HTTPS (port 443) must be allowed

"Authentication error"

  1. Check the license key for typos
  2. Make sure the key starts with sm_live_
  3. Verify your license is active

Best Practices

Back Up Your Configuration

Save a backup of your claude_desktop_config.json -- but not in a public Git repository. The file contains your API keys.

One Server at a Time

Start with one MCP server. Once it runs reliably, add more. This makes it easier to isolate problems.

Stay Updated

Claude Desktop updates automatically. MCP servers can add new tools -- these become available automatically without changing your configuration.

What's Next?

With Claude Desktop and a configured MCP server, you have a powerful setup. Claude can now not only answer questions but actively take action -- in your real business tools.

Discover all available MCP products in the StudioMeyer Store and expand your setup with tools that fit your workflow.

Matthias Meyer

Matthias Meyer

Founder & AI Director

Founder & AI Director at StudioMeyer. Has been building websites and AI systems for 10+ years. Living on Mallorca for 15 years, running an AI-first digital studio with its own agent fleet, 680+ MCP tools and 5 SaaS products for SMBs and agencies across DACH and Spain.

claudemcptutorialsetupdesktop
Claude Desktop + MCP Server: The Complete Setup Guide