MCP Catalogs
Home

markitdown_mcp_server vs filesystem

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

markitdown_mcp_server
by KorigamiK
filesystem
by modelcontextprotocol
Stars★ 71★ 85,748
30d uses
Score4577
Official
Categories
File SystemProductivityDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit5 mo agothis month

markitdown_mcp_server · Summary

MCP server converting multiple file formats to Markdown using MarkItDown utility.

filesystem · Summary

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

markitdown_mcp_server · Use cases

  • Converting research papers from PDF to Markdown for easier analysis and citation
  • Processing meeting recordings by transcribing audio and converting to Markdown notes
  • Automatically converting document collections from various formats into a unified Markdown archive

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

markitdown_mcp_server · Install

Installation

Via Smithery
npx -y @smithery/cli install @KorigamiK/markitdown_mcp_server --client claude
Manual Installation
  1. Clone this repository
  2. Install dependencies:
uv install

Claude Desktop Configuration

Add the following to your Claude Desktop config:

{
  "mcpServers": {
    "markitdown": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/markitdown_mcp_server",
        "run",
        "markitdown-mcp"
      ]
    }
  }
}

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.