Skip to content

Top 40 Community MCP Servers

The MCP ecosystem has grown exponentially, with hundreds of servers available. This guide presents the 40 most valuable MCP servers for modern software engineering, organized by category and use case.

Essential for any development workflow - these servers connect your AI to your code history and collaboration platform.

ServerPurposeAuth RequiredQuick Install
GitDirect git CLI operationsNone (local)uvx mcp-server-git
GitHubFull GitHub API accessPAT/OAuthUse hosted: https://api.githubcopilot.com/mcp/
GitLabSelf-hosted/SaaS GitLabPATnpx -y @zereight/mcp-gitlab
BitbucketAtlassian ecosystemApp passwordnpx -y @aashari/mcp-server-atlassian-bitbucket
GiteaLightweight self-hostedAPI tokenGo binary from gitea.com/gitea/gitea-mcp

Pro Tip

Start with Git for local operations and add your primary hosting platform (GitHub, GitLab, etc.) for remote operations like PR management.

Automate your entire build pipeline through natural language commands.

CircleCI

  • Inspect jobs and logs
  • Restart workflows
  • Approve deployments

Install: npx -y @circleci/mcp-server-circleci

Jenkins

  • Trigger builds
  • Query job status
  • Legacy integration

Install: npx -y jenkins-mcp-server

Bitrise

  • Mobile-first CI
  • iOS/Android builds
  • App distribution

Remote: mcp.bitrise.io or Go binary from github.com/bitrise-io/bitrise-mcp

Azure DevOps

  • Boards & Repos
  • Pipelines
  • Microsoft stack

Install: npx -y @azure-devops/mcp <org> (microsoft/azure-devops-mcp)

Provision and manage cloud resources without leaving your IDE.

github.com/awslabs/mcp
# AWS publishes a family of specialized servers under awslabs.
# Example: the core server that routes to the others
uvx awslabs.core-mcp-server@latest
# Other servers in the suite:
# - awslabs.aws-documentation-mcp-server
# - awslabs.cdk-mcp-server
# - awslabs.cost-explorer-mcp-server
PlatformFocus AreaInstall Command
CloudflareWorkers, D1, R2, KVHosted: https://bindings.mcp.cloudflare.com/mcp (plus https://observability.mcp.cloudflare.com/mcp for logs)
KubernetesContainer orchestrationnpx -y kubernetes-mcp-server
DockerImage & container managementLocal gateway: docker mcp gateway run (catalog at hub.docker.com/mcp)

Natural language database operations across SQL and NoSQL systems.

PostgreSQL

Production-ready SQL

  • Schema introspection
  • Query optimization
  • Migration support
Terminal window
docker run -e PG_URL=... pg-mcp-server

Redis

In-memory operations

  • KV store access
  • Stream processing
  • Vector search
Terminal window
# Official Python server (run from the repo):
uvx --from git+https://github.com/redis/mcp-redis redis-mcp-server

MongoDB

Document store

  • Natural language queries
  • Aggregation pipelines
  • Index management
Terminal window
npx -y mongodb-mcp-server

Elasticsearch

Full-text search

  • Log analytics
  • Search queries
  • Index operations
Terminal window
npx -y elasticsearch-mcp
  • ClickHouse: OLAP analytics (npx -y clickhouse-mcp-server)

Keep your systems healthy with AI-assisted monitoring.

  1. Sentry - Error tracking and performance

    Terminal window
    npx -y @sentry/mcp-server
    # Or use the hosted server: https://mcp.sentry.dev/mcp
    # Query issues, stack traces, release health
  2. Grafana - Metrics visualization

    github.com/grafana/mcp-grafana
    # npm alternative (community TS port):
    npx -y @leval/mcp-grafana
    # Search dashboards, run PromQL queries
  3. Dynatrace - APM and diagnostics

    Terminal window
    npx -y dynatrace-mcp
    # Live performance data, problem detection
ToolPurposeInstall
SonarQubeStatic analysisnpx -y sonarqube-mcp-server

Essential Testing Stack

  1. Playwright - Cross-browser testing (recommended browser server)

    Terminal window
    npx -y @playwright/mcp@latest
  2. Puppeteer - Chrome/Chromium automation

    Terminal window
    # The reference server is archived; use the maintained fork:
    npx -y @hisma/server-puppeteer

Connect your AI to your team’s workflow.

PlatformBest ForInstall
LinearModern product teamshttps://mcp.linear.app/mcp
JiraEnterprise workflowshttps://mcp.atlassian.com/v1/mcp (unified Rovo endpoint)
GitHub IssuesOpen source projectsVia GitHub MCP
Azure BoardsMicrosoft teamsVia Azure MCP

The Swiss Army knives of the MCP ecosystem.

Fetch

Safe web scraping and API calls (Python)

Terminal window
uvx mcp-server-fetch

Filesystem

Local file operations (Node)

Terminal window
npx -y @modelcontextprotocol/server-filesystem /path/to/dir
  1. Git - Local version control
  2. GitHub/GitLab - Remote collaboration
  3. Filesystem - File operations
  4. PostgreSQL/MongoDB - Your primary database
  5. Slack/Linear - Team communication

Add to starter:

  • AWS/Azure/GCP - Cloud infrastructure
  • Playwright - Browser testing
  • Sentry - Error monitoring
  • Docker/Kubernetes - Container management
  • CircleCI/Jenkins - CI/CD automation

Include specialized tools:

  • SonarQube - Code quality gates
  • Confluence - Documentation
  • Grafana - Metrics dashboards
  • Multiple databases - Polyglot persistence
  • Compliance tools - Audit and security
  1. Start Small: Begin with 3-5 essential servers
  2. Use Docker When Possible: Isolate server environments
  3. Monitor Performance: Too many servers can slow AI responses
  4. Rotate Credentials: Regular token rotation for security
  5. Document Your Stack: Share configurations with your team
Terminal window
# NPX pattern (Node.js servers)
npx -y @organization/mcp-server-name
# UVX pattern (Python servers)
uvx mcp-server-name
# Docker pattern (for isolation)
docker run -e API_KEY=... image-name
# Remote HTTP pattern (hosted servers)
claude mcp add --transport http [name] https://api.service.com/mcp/
# Cursor/Codex use a "url" field in their JSON/TOML config instead
# User-scoped local install
claude mcp add [name] -s user -- [command]
Terminal window
# List available tools
"Show me all available MCP tools"
# Test a specific server
"Test the GitHub MCP connection"
# Check server status
"Which MCP servers are currently active?"

Ready to expand your MCP toolkit?

Custom MCP Development

Build your own MCP server

MCP Best Practices

Optimize your MCP workflow

Enterprise Integration

Scale MCP across teams