drio
Open app

MCP-Servers

Source

MCP Servers 倉庫

Catalog onlyCatalog onlySTDIO

Overview

MCP-Servers is a repository designed for managing and deploying MCP servers, providing all necessary configuration files and scripts.

To use MCP-Servers, clone the repository and follow the installation steps to set up the server management environment.

  • Server configuration management - Deployment automation - Monitoring and logging - Performance optimization
  1. Managing multiple MCP server configurations.
  2. Automating the deployment process for new servers.
  3. Monitoring server performance and logging activities.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What are the prerequisites for using MCP-Servers?

You need Git, Node.js (recommended version >= 14), and npm or yarn.

How can I contribute to MCP-Servers?

You can submit a Pull Request to improve the project. For major changes, please discuss your ideas by opening an Issue first.

What license is MCP-Servers under?

MCP-Servers is licensed under the MIT License.