Best Developer Tools MCP Servers for Claude Desktop
Connect developer tools tools to Claude Desktop using MCP servers. These servers let Claude Desktop interact with developer tools resources, enabling powerful AI-assisted workflows for developers.
30 Developer Tools Servers for Claude Desktop
Filesystem Server
Secure file operations with configurable access controls
Memory Server
Knowledge graph-based persistent memory system
Git
Version control operations
Puppeteer
Browser automation and web scraping
GitHub Official
Official GitHub integration with comprehensive API coverage
AWS Labs MCP Suite
Comprehensive AWS services integration suite
Kubernetes
Native Kubernetes API integration for cluster management
Docker
Container management and orchestration
Terraform
Infrastructure as Code management
Notion
Workspace and knowledge management
Jira
Issue tracking and project management
Linear
Modern issue tracking for software teams
Grafana
Observability and monitoring dashboards
Azure
Microsoft Azure cloud services integration
Google Cloud Platform
Google Cloud services integration
Vercel
Frontend deployment and hosting platform
Netlify
JAMstack deployment and hosting
Confluence
Team collaboration and documentation
Playwright MCP
Browser automation and testing via Microsoft Playwright
Context7
Fetch up-to-date library documentation for AI coding agents
Sequential Thinking
Structured step-by-step reasoning for complex problem solving
Figma Context MCP
Design-to-code bridge with Figma file access
Sentry MCP
Error tracking and performance monitoring via Sentry
GitLab MCP
GitLab repository and project management
Time MCP
Timezone conversion and time-related operations
Blender MCP
3D modeling and scene manipulation via Blender
Claude Task Master
AI-powered task management and project planning
Mobile MCP
Android and iOS device automation and testing
dbt MCP
Data build tool integration for analytics engineering
Markitdown
Convert documents, PDFs, and files to markdown
Claude Desktop Configuration
Add developer tools MCP servers to your Claude Desktop configuration at ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/you/projects"]
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_your_token_here"
}
},
"postgres": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost:5432/mydb"]
},
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "your_brave_api_key_here"
}
},
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
}
}
}