drio
Open app

MasterGO-McpServer

Source

基于MasterGO构建MCP服务

Catalog onlyCatalog onlySTDIO

Overview

MasterGO-McpServer is a service built on the MasterGO framework, designed to provide MCP (Master Control Protocol) functionalities for various applications.

To use MasterGO-McpServer, clone the repository from GitHub, set up the environment according to the provided documentation, and start the server to handle MCP requests.

  • Built on the robust MasterGO framework - Supports various MCP functionalities - Easy integration with existing applications
  1. Managing control protocols in media applications
  2. Integrating with lighting and sound systems for events
  3. Developing custom applications that require MCP support

Add to your AI client

Use these steps to connect MasterGO-McpServer 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": {
    "mastergo-mcpserver-clyingdeng": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mastergo-mcpserver-clyingdeng"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mastergo-mcpserver-clyingdeng": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mastergo-mcpserver-clyingdeng"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "mastergo-mcpserver-clyingdeng": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mastergo-mcpserver-clyingdeng"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mastergo-mcpserver-clyingdeng": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mastergo-mcpserver-clyingdeng"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mastergo-mcpserver-clyingdeng": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mastergo-mcpserver-clyingdeng"
      ]
    }
  }
}

FAQ

What is MCP?

MCP stands for Master Control Protocol, a protocol used for communication between devices in media and entertainment systems.

Is MasterGO-McpServer free to use?

Yes! MasterGO-McpServer is open-source and free to use.

How can I contribute to MasterGO-McpServer?

You can contribute by submitting issues, feature requests, or pull requests on the GitHub repository.