everything vs markdownify-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | markdownify-mcp by zcaceres | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2,686 |
| 30d uses | — | — |
| Score | 77 | 57 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
markdownify-mcp · Summary
MCP server converting various file types and web content to Markdown with comprehensive tool coverage.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmarkdownify-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"
]
}
}
}