MCP Catalogs
Home

winremote-mcp vs filesystem

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

winremote-mcp
by dddabtc
filesystem
by modelcontextprotocol
Stars★ 118★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsMonitoringOps & Infra
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

winremote-mcp · Summary

Windows Remote MCP Server with 40+ tools for desktop automation, process management, and file operations via FastMCP.

filesystem · Summary

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

winremote-mcp · Use cases

  • Enable AI agents like Claude and GPT to control Windows GUI applications remotely
  • Automate Windows system administration tasks from cross-platform environments
  • Provide accessible Windows desktop control for users with disabilities

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

winremote-mcp · Install

Installation

From PyPI (Recommended)

pip install winremote-mcp

From Source

git clone https://github.com/dddabtc/winremote-mcp.git
cd winremote-mcp
pip install .

Claude Desktop Integration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "winremote": {
      "type": "http",
      "url": "http://192.168.1.100:8090/mcp/",
      "oauth": {
        "clientId": "my-client",
        "clientSecret": "my-secret"
      }
    }
  }
}

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.