MCP Catalogs
Home

mcp-server-microsoft-paint vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-microsoft-paint
by ghuntley
everything
by modelcontextprotocol
Stars★ 20★ 85,748
30d uses
Score4077
Official
Categories
Developer ToolsMediaProductivity
Developer ToolsAI / LLM ToolsOther
LanguageRustTypeScript
Last commit1 mo agothis month

mcp-server-microsoft-paint · Summary

An MCP server for controlling Microsoft Paint with drawing, shape tools, and window management via JSON-RPC.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-server-microsoft-paint · Use cases

  • Automate simple graphics creation in Paint through AI assistants
  • Integrate Paint functionality into larger automation workflows
  • Create custom drawing tools that interface with Paint programmatically

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

mcp-server-microsoft-paint · Install

Installation

  1. Clone the repository:
git clone https://github.com/ghuntley/mcp-server-microsoft-paint
cd mcp-server-microsoft-paint
  1. Build the server:
cargo build --release
  1. Run the server:
cargo run --release

Claude Desktop Configuration

Add to your Claude Desktop config.json:

"mcpServers": {
  "paint": {
    "command": "path/to/cargo",
    "args": ["run", "--release", "--", "mcp-server-microsoft-paint"],
    "env": {}
  }
}

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.