LocalPlay MCP Server

by hfyydd

151 downloads
Not rated
GitHub

Description

# LocalPlay MCP Server 用于本地运行 MCP (Model Context Protocol) 服务器的项目,实现鼠标控制功能。 A project for running a local MCP (Model Context Protocol) server that implements mouse control functionality. ## 安装 | Installation 使用 `uv` 安装依赖: Install dependencies using `uv`: ```bash uv add…

About

# LocalPlay MCP Server 用于本地运行 MCP (Model Context Protocol) 服务器的项目,实现鼠标控制功能。 A project for running a local MCP (Model Context Protocol) server that implements mouse control functionality. ## 安装 | Installation 使用 `uv` 安装依赖: Install dependencies using `uv`: ```bash uv add "mcp[cli]" pyautogui ``` 或者使用 pip: Or using pip…

Details

Author
hfyydd
Downloads
151
Categories
Other

- Move mouse to specified coordinates.
- Perform mouse clicks at current or specified position.
- Drag mouse from one position to another.
- Scroll mouse wheel up or down.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name LocalPlay MCP Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install dependencies with uv or pip, then configure the MCP client to point to the server. The server can be run directly via the uv command or as a Docker container exposing port 8080.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "localplay mcp server": {
            "localplay-mcp-server": {
                "command": "docker",
                "args": [
                    "build",
                    "-t",
                    "localplay-mcp-server",
                    "."
                ]
            }
        }
    }
}

McpServers

{
    "localplay-mcp-server": {
        "command": "docker",
        "args": [
            "build",
            "-t",
            "localplay-mcp-server",
            "."
        ]
    }
}

LocalPlay MCP Server

用于本地运行 MCP (Model Context Protocol) 服务器的项目,实现鼠标控制功能。

A project for running a local MCP (Model Context Protocol) server that implements mouse control functionality.

安装 | Installation

使用 uv 安装依赖:

Install dependencies using uv:

uv add "mcp[cli]" pyautogui

或者使用 pip:

Or using pip:

pip install "mcp[cli]" pyautogui

使用方法 | Usage

启动服务器 | Starting the Server

运行以下命令启动 MCP 开发服务器:

Run the following command to start the MCP development server:

    "localplay-mcp-server": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/localplay-mcp-server",
        "run",
        "server.py"
      ]
    }

使用Docker | Using Docker

您也可以使用Docker来运行服务器:

You can also use Docker to run the server:

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.