drio
Open app

mcpServers

Source

Catalog onlyCatalog onlySTDIO

Overview

mcpServers is a tool designed to simplify the management and automation of server infrastructures. ## how to use mcpServers? To use mcpServers, clone the repository from GitHub and follow the setup instructions in the documentation provided in the repo. ## key features of mcpServers? - Provides easy management of multiple server instances. - Automates deployment processes and routine tasks. - Supports configurations for various server environments. ## use cases of mcpServers?

  1. Managing a fleet of servers for web hosting.
  2. Automatically deploying updates to server instances.
  3. Streamlining the process of server configuration and management. ## FAQ from mcpServers? - What platforms does mcpServers support? > mcpServers is designed to work with a variety of server platforms, ensuring flexibility in deployment. - Is mcpServers open-source? > Yes! mcpServers is an open-source project available on GitHub. - How can I contribute to mcpServers? > Contributions are welcome! Please check the contribution guidelines in the repository.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":254,"uuid":"121d616e-4e65-4acd-b7e2-981fd0f4c84d","name":"mcpServers","title":"mcpServers","description":null,"avatar_url":"https://avatars.githubusercontent.com/u/99031?v=4","created_at":"2024-12-13T10:43:55.724Z","updated_at":"2024-12-13T12:28:10.550Z","status":"created","author_name":"trezero","author_avatar_url":"https://avatars.githubusercontent.com/u/99031?v=4","tags":"[]","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/trezero/mcpServers","target":"_self","content":"# mcpServers","summary":"$29","img_url":null,"type":null,"metadata":null,"user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcpservers-trezero": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpservers-trezero"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "mcpservers-trezero": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpservers-trezero"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcpservers-trezero": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpservers-trezero"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcpservers-trezero": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcpservers-trezero"
      ]
    }
  }
}