filesystem vs markdownify-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | markdownify-mcp by zcaceres | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2,686 |
| 30d uses | — | — |
| Score | 77 | 57 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | File SystemProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
markdownify-mcp · Summary
MCP server converting various file types and web content to Markdown with comprehensive tool coverage.
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
markdownify-mcp · Use cases
- Convert research papers (PDF) and lecture recordings (audio) into readable Markdown for study notes
- Transform web articles, search results, and video transcripts into digestible Markdown documents
- Automatically process batches of office documents (DOCX, XLSX, PPTX) for archival and search purposes
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.
markdownify-mcp · Install
Installation
- Clone this repository
- Install dependencies:
``bash bun install ` The preinstall step creates a Python virtual environment at .venv and installs markitdown[all]`.
- Build the project:
``bash bun run build ``
- Start the server:
``bash bun start ``
Claude Desktop Configuration
{
"mcpServers": {
"markdownify": {
"command": "node",
"args": [
"{ABSOLUTE PATH TO FILE HERE}/dist/index.js"
]
}
}
}