screenshotmcpserver

mauri870/screenshotmcpserver

3.2

If you are the rightful owner of screenshotmcpserver and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

This is a simple MCP server designed to capture screenshots of the host's screen, intended for use with local LLMs like Claude Desktop.

Screenshot MCP Server

This is a simple MCP server that takes a screenshot of the host's screen. It is intended to be used with local llm such as Claude Desktop.

Build

make

Usage

make
make inspector # to run the mcp inspector and try it out locally

Cloude Desktop

Edit your configuration file to add the MCP server:

{
  "mcpServers": {
    "screenshot": {
      "command": "~/git/screenshotmcp/screenshotmcpserver.exe"
    }
  }
}

With WSL on Windows, you can use the following command to run the MCP server:

{
  "mcpServers": {
    "screenshot": {
      "command": "wsl",
      "args": ["bash", "-c", "~/git/screenshotmcp/screenshotmcpserver.exe"]
    }
  }
}