drio
Open app

Awesome MCP Clients

Source

A collection of MCP clients.

Catalog onlyCatalog onlySTDIO

Overview

Awesome MCP Clients is a curated collection of Model Context Protocol (MCP) clients that facilitate secure interactions between AI models and local or remote resources through standardized server implementations.

Users can explore the list of MCP clients available in the repository, each with its own GitHub link for installation and usage instructions.

  • A comprehensive list of production-ready and experimental MCP clients. - Links to each client's GitHub repository for easy access. - Community support through Discord and Reddit.
  1. Integrating AI models with local databases and APIs.
  2. Developing applications that require AI capabilities through MCP.
  3. Exploring various MCP clients for different platforms and use cases.

Add to your AI client

Use these steps to connect Awesome MCP Clients 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-clients-punkpeye": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-mcp-clients-punkpeye"
      ]
    }
  }
}

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-clients-punkpeye": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-mcp-clients-punkpeye"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

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-clients-punkpeye": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-awesome-mcp-clients-punkpeye"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the Model Context Protocol (MCP)?

MCP is an open protocol that allows AI models to interact with resources securely.

How can I contribute to the Awesome MCP Clients list?

You can submit a pull request on the GitHub repository to add new clients or improve existing entries.

Is there a community for MCP users?

Yes! You can join the MCP community on Discord or Reddit.