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
| Product | Endpoint | Status |
|---|---|---|
| AI CRM | https://mcp.studiomeyer.io/ai-crm/mcp | Live |
| AI Shield | https://mcp.studiomeyer.io/ai-shield/mcp | Live |
| SmartBot | https://mcp.studiomeyer.io/smartbot/mcp | Live |
| AI Inbox Manager | https://mcp.studiomeyer.io/ai-inbox/mcp | Coming Soon |
| AI Documents | https://mcp.studiomeyer.io/ai-documents/mcp | Coming Soon |
| AI Knowledge Vault | https://mcp.studiomeyer.io/ai-knowledge/mcp | Coming 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 + Qor 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"
- Check the JSON syntax of your config file (a missing comma is enough to break it)
- Make sure the API key is correct
- Fully restart Claude Desktop (not just close the window)
"Connection failed"
- Check your internet connection
- Make sure
https://mcp.studiomeyer.iois reachable - Firewalls or VPNs can block the connection -- HTTPS (port 443) must be allowed
"Authentication error"
- Check the license key for typos
- Make sure the key starts with
sm_live_ - 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.
