DEV Community

Cover image for Claude Desktop MCP Servers: The $50k Automation Gap
Dr Hernani Costa
Dr Hernani Costa

Posted on • Originally published at radar.firstaimovers.com

Claude Desktop MCP Servers: The $50k Automation Gap

Most teams leave 90% of Claude Desktop's potential untapped—costing thousands in lost productivity each month. The Model Context Protocol (MCP) transforms Claude from a conversational interface into an enterprise-grade AI operating system, giving it local access to your filesystem, GitHub repos, databases, and real-time data.

This guide walks you through installing and configuring 10 essential MCP servers that unlock workflow automation design and operational AI implementation for your team.

Quick Setup: How MCP Servers Work

MCP servers run locally on your machine and expose tools, resources, and prompts to Claude Desktop through a standardized protocol. Think of them as plugins that give Claude new capabilities—except they're privacy-first (everything runs locally) and work across any MCP-compatible client.

Installation is simple: Add a server config to your claude_desktop_config.json file, restart Claude, and you're done.

Where to find your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

The 10 Must-Have Claude Desktop MCP Servers

1. Filesystem Server — Read & Write Files Locally

What it does: Lets Claude read, write, search, and edit files on your computer. Essential for coding, writing, or working with local documents.

Install:

{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/directory"]
}
}
}

Replace /path/to/allowed/directory with the folder you want Claude to access (e.g., ~/projects).

2. GitHub Server — Manage Repos, Issues, and PRs

What it does: Search repos, create issues, comment on PRs, fetch file contents, and more—all without leaving Claude. This enables AI tool integration for development teams.

Install:

{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "your_token_here"
}
}
}
}

Get a GitHub PAT here.

3. Brave Search Server — Real-Time Web Search

What it does: Lets Claude search the web in real time. Crucial for research, fact-checking, and staying current.

Install:

{
"mcpServers": {
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "your_api_key_here"
}
}
}
}

Get a free Brave API key here.

4. PostgreSQL Server — Query Databases Directly

What it does: Run SQL queries, inspect schemas, and analyze data in your PostgreSQL databases. This supports business process optimization through data-driven insights.

Install:

{
"mcpServers": {
"postgres": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://user:pass@localhost/dbname"]
}
}
}

Replace the connection string with your actual database credentials.

5. Memory Server — Persistent Knowledge Graph

What it does: Creates a local knowledge graph so Claude remembers context across conversations. Game-changer for long-term projects and maintaining institutional knowledge.

Install:

{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
}
}
}

6. Puppeteer Server — Browser Automation

What it does: Control a headless Chrome browser—scrape websites, fill forms, take screenshots, run end-to-end tests. Essential for workflow automation design.

Install:

{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-puppeteer"]
}
}
}

7. Slack Server — Send Messages & Read Channels

What it does: Post to Slack channels, read message history, search conversations—great for team automation and operational AI implementation.

Install:

{
"mcpServers": {
"slack": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"env": {
"SLACK_BOT_TOKEN": "xoxb-your-token"
}
}
}
}

Create a Slack app and bot token here.

8. Google Maps Server — Geocoding & Directions

What it does: Geocode addresses, calculate routes, find nearby places—useful for logistics, travel planning, or location-aware apps.

Install:

{
"mcpServers": {
"google-maps": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-google-maps"],
"env": {
"GOOGLE_MAPS_API_KEY": "your_api_key_here"
}
}
}
}

Get a Google Maps API key here.

9. Sequential Thinking Server — Extended Reasoning

What it does: Gives Claude access to a sequential thinking tool for complex multi-step reasoning. Particularly useful for debugging or strategic planning.

Install:

{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
}
}
}

10. Time Server — Current Date & Time

What it does: Provides Claude with the current date and time. Simple but essential—Claude otherwise has no concept of "today."

Install:

{
"mcpServers": {
"time": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-time"]
}
}
}

Putting It All Together

Your final claude_desktop_config.json should look like this:

{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "~/projects"]
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "your_token_here"
}
},
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "your_api_key_here"
}
},
"postgres": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://user:pass@localhost/dbname"]
},
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
},
"puppeteer": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-puppeteer"]
},
"slack": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"env": {
"SLACK_BOT_TOKEN": "xoxb-your-token"
}
},
"google-maps": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-google-maps"],
"env": {
"GOOGLE_MAPS_API_KEY": "your_api_key_here"
}
},
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
},
"time": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-time"]
}
}
}

Important: Replace all placeholder tokens and credentials with your actual API keys. Restart Claude Desktop after saving the config.

Troubleshooting Common Issues

Claude doesn't see the new servers

  • Restart Claude Desktop completely (quit and reopen)
  • Check the config file for JSON syntax errors (use a JSON validator)
  • Make sure the file path is correct for your OS

Server fails to start

  • Run the npx command manually in your terminal to see the error
  • Check that all required environment variables are set
  • Ensure Node.js 18+ is installed (node --version)

Permission errors

  • For filesystem server: make sure the path exists and is readable
  • For database servers: verify connection strings are correct
  • For API-based servers: confirm API keys are valid

What's Next?

This is just the beginning. The MCP ecosystem has 100+ servers and growing—from specialized tools like Obsidian integration and Linear project management to custom servers you can build yourself. This level of customization represents a core component of digital transformation strategy, allowing teams to tailor AI tool integration to their specific operational needs.

Browse the full catalog here to discover more servers, read reviews, and see what the community is building.

Claude Desktop + MCP isn't just a better chatbot. It's your AI-powered operating system.

Further Reading


Written by Dr Hernani Costa | Powered by Core Ventures

Originally published at First AI Movers.

Technology is easy. Mapping it to P&L is hard. At First AI Movers, we don't just configure tools; we build the 'Executive Nervous System' for EU SMEs through AI readiness assessment and workflow automation design.

Is your tech stack creating technical debt or business equity?

👉 Get your AI Readiness Score (Free Company Assessment)

Top comments (0)