drio
Open app

Awesome MCP Servers

Source

Awesome MCP Servers - A curated list of Model Context Protocol servers

Catalog onlyCatalog onlySTDIO

Overview

Awesome MCP Servers is a curated collection of Model Context Protocol (MCP) servers that facilitate AI models to interact with local and remote resources securely.

Users can explore the repository on GitHub to find different MCP servers, follow provided tutorials for setup, and integrate them into their applications.

  • Comprehensive list of MCP servers including production-ready and experimental options. - Tutorials and community resources for easier implementation and usage. - Categorization of servers based on functionality such as browser automation, cloud platforms, databases, etc.
  1. Enhancing AI capabilities through secure file access and API integrations.
  2. Exploring data science tools for analyzing datasets.
  3. Building applications that require integration with various communication platforms or database systems.

Add to your AI client

Use these steps to connect Awesome MCP Servers in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "awesome-mcp-servers-appcypher": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-mcp-servers-appcypher"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "awesome-mcp-servers-appcypher": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-mcp-servers-appcypher"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "awesome-mcp-servers-appcypher": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-mcp-servers-appcypher"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "awesome-mcp-servers-appcypher": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-mcp-servers-appcypher"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "awesome-mcp-servers-appcypher": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-mcp-servers-appcypher"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "awesome-mcp-servers-appcypher": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-mcp-servers-appcypher"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol (MCP)?

MCP is an open protocol enabling AI models to interact securely with resources via standardized server implementations.

Is there community support available?

Yes! There is a Discord server and a dedicated subreddit for discussions and support related to MCP.

Where can I find tutorials for setting up MCP servers?

The repository provides a section for tutorials that cover how to set up and utilize different MCP servers effectively.