m

mcpchesssampleserver

@bkoseda/mcpchesssampleserver
0 Stars 3 次浏览 bkoseda 更新于 2026-08-23

MCP 服务配置

复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用

{
  "mcpServers": {
    "GithubHostedExample": {
      "args": [
        "--from",
        "git+https://github.com/bkoseda/mcpchesssampleserver.git",
        "chess"
      ],
      "command": "uvx"
    }
  }
}

服务介绍

To run the MCP server using the provided configuration, follow these steps:

  1. Install prerequisites
    Ensure you have uvx installed on your system.

  2. Clone and start the server
    The configuration below will start the MCP server from a GitHub repository using uvx.
    The command pulls the server code and launches the mcp-server entry point.

    {
      "mcpServers": {
         "GithubHostedExample": {
            "command": "uvx",
            "args": [
              "--from",
              "git+https://github.com/bkoseda/mcpchesssampleserver.git",
              "chess"
            ]
         }
      }
    }
    
  3. Run the server
    Execute the following command in your terminal:

    uvx --from git+https://github.com/bkoseda/mcpserverexample.git mcp-server
    

This will download the MCP server from the specified GitHub repository and start it locally.
Refer to the repository's documentation for additional configuration or usage details.

相关 MCP 服务