drio
Open app

mcp-servers

Source

A collection of MCP server tools in Typescript

Catalog onlyCatalog onlySTDIO

Overview

mcp-servers is a collection of tools designed for managing and operating MCP servers, built using Typescript.

To use mcp-servers, clone the repository from GitHub and follow the setup instructions provided in the documentation to configure the server tools according to your needs.

  • A comprehensive suite of server management tools - Built with Typescript for type safety and better development experience - Easy integration with existing MCP server setups
  1. Managing multiple MCP servers efficiently.
  2. Automating server tasks and configurations.
  3. Enhancing server performance with specialized tools.

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What programming language is used in mcp-servers?

mcp-servers is built using Typescript, which provides type safety and modern JavaScript features.

Is there any documentation available?

Yes! Documentation is available in the GitHub repository to help you get started.

Can I contribute to mcp-servers?

Absolutely! Contributions are welcome, and you can find guidelines in the repository.