drio
Open app

MCP Marketplace

Source

This is the official repository for submitting MCP servers to be included in Cline's MCP Marketplace. If you’ve built an MCP server and want it to be discoverable and easily installable by millions of developers using Cline, submit your server here.

Catalog onlyCatalog onlySTDIO

Overview

MCP Marketplace is a repository for submitting MCP servers, allowing developers to make their servers discoverable and easily installable by users of Cline.

To use MCP Marketplace, developers can submit their MCP servers by creating a new issue in the repository with the required information, including a GitHub repo URL and a logo image.

  • Curated collection of MCP servers for easy discovery - One-click installation for seamless setup - Search functionality by name, category, and tags
  1. Developers can showcase their MCP servers to a wider audience.
  2. Users can easily find and install useful MCP servers for their projects.
  3. Facilitates collaboration and sharing within the developer community.

Add to your AI client

Use these steps to connect MCP Marketplace 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": {
    "mcp-marketplace-cline": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-marketplace-cline"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

Do I have to create a `llms-install.md` file?

No, a well-written README is usually sufficient.

Can I submit new MCP servers without many stars?

Yes, submissions are accepted regardless of star count, but they undergo a vetting process.

How long does the approval process take?

The team aims to review submissions within a couple of days.