MCP Catalogs
Home

mcp-server-microsoft-paint vs filesystem

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

mcp-server-microsoft-paint
by ghuntley
filesystem
by modelcontextprotocol
Stars★ 20★ 85,748
30d uses
Score4077
Official
Categories
Developer ToolsMediaProductivity
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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": {}
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.