drio
Open app

mcp-mananger-desktop

Source

WIP: A MCP server to search, install, uninstall all your MCP servers or services for your Claude App (or more)

Catalog onlyCatalog onlySTDIO

Overview

MCP Manager Desktop is a work-in-progress Electron application designed for managing MCP (Minecraft clone) servers, including searching, installing, and uninstalling various MCP servers or services for applications like Claude.

To use MCP Manager Desktop, clone the repository from GitHub, install the required dependencies, and run the development server to access the application functionality.

  • Search for MCP servers and services easily. - Install and uninstall MCP servers seamlessly. - Built using modern web technologies like React and TypeScript.
  1. Quickly search for the required MCP servers for game development.
  2. Manage multiple MCP server installations without hassle.
  3. Provide a user-friendly interface for users unfamiliar with command-line operations.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-manager-desktop-mcp-club": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-manager-desktop-mcp-club"
      ]
    }
  }
}

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-manager-desktop-mcp-club": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-manager-desktop-mcp-club"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-manager-desktop-mcp-club": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-manager-desktop-mcp-club"
      ]
    }
  }
}

FAQ

What programming languages and frameworks does MCP Manager Desktop use?

MCP Manager Desktop is built with React and TypeScript within an Electron framework.

Is there any setup required to run the application?

Yes! You will need to install dependencies using pnpm and set up the development environment as outlined in the README.

Is MCP Manager Desktop free to use?

Yes! MCP Manager Desktop is open-source and free to use for everyone.