drio
Open app

MCP Servers

Source

Repository for MCP servers configuration and setup

Catalog onlyCatalog onlySTDIO

Overview

MCP Servers is a repository that provides configuration and setup for Model Context Protocol (MCP) servers, enabling integration with GitHub and Puppeteer for various functionalities.

To use MCP Servers, install the required servers using Node.js and npm, configure them with your GitHub Personal Access Token, and run the servers using the provided commands.

  • GitHub Integration: Manage repositories, track issues, handle pull requests, and perform code searches. - Puppeteer Integration: Automate web tasks, capture screenshots, navigate pages, and interact with forms.
  1. Automating GitHub repository management tasks.
  2. Running web automation scripts using Puppeteer.
  3. Integrating GitHub API functionalities into applications.

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What are the prerequisites for using MCP Servers?

You need Node.js, npm, and a GitHub Personal Access Token for the GitHub MCP server.

Can I contribute to MCP Servers?

Yes! Contributions are welcome, and you can submit a Pull Request.