MCP Catalogs
Home

mcp-desktop vs filesystem

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

mcp-desktop
by http4k
filesystem
by modelcontextprotocol
Stars★ 40★ 85,748
30d uses
Score4577
Official
Categories
AI / LLM ToolsDeveloper ToolsCommunication
File SystemDeveloper ToolsProductivity
LanguageKotlinTypeScript
Last committhis monththis month

mcp-desktop · Summary

A robust Kotlin-based MCP desktop client supporting multiple transport protocols and authentication methods for connecting to MCP servers.

filesystem · Summary

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

mcp-desktop · Use cases

  • Connecting desktop AI applications like Claude to remote MCP servers
  • Bridging local development environments with hosted MCP services
  • Providing secure authentication for MCP connections in enterprise environments

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-desktop · Install

Installation

Via Homebrew:

brew tap http4k/tap
brew install http4k-mcp-desktop

Via GitHub Releases: Download the latest release from [GitHub Releases](https://github.com/http4k/http4k-mcp-desktop/releases).

Claude Desktop Configuration

Create a config.json file:

{
    "command": "http4k-mcp-desktop",
    "args": [
        "--url",
        "http://your-mcp-server:port/mcp",
        "--transport",
        "http-stream"
    ],
    "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.