everything vs chatgpt2md
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | chatgpt2md by NextStat | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsProductivityFile System |
| Language | TypeScript | Rust |
| Last commit | this month | 3 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
chatgpt2md · Summary
ChatGPT to Markdown converter with full-text search and MCP server for accessing conversations in Claude.
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
chatgpt2md · Use cases
- Access ChatGPT conversation history directly in Claude for contextual reference
- Search and retrieve specific conversations from large ChatGPT exports
- Archive ChatGPT chats in a readable Markdown format with full-text search capabilities
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-everythingchatgpt2md · Install
Installation
Quick Install
cargo install --git https://github.com/NextStat/chatgpt2mdBinary Installation
- Download the appropriate binary for your platform from [Releases](https://github.com/NextStat/chatgpt2md/releases)
- Extract and move to PATH:
``bash tar xzf chatgpt2md-*.tar.gz sudo mv chatgpt2md /usr/local/bin/ ``
Claude Configuration
chatgpt2md install --index ./chatgpt_chats/.index --chats ./chatgpt_chatsManual Claude Desktop Configuration
Edit Claude Desktop config file:
- **macOS:**
~/Library/Application Support/Claude/claude_desktop_config.json - **Windows:**
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"chatgpt-history": {
"command": "/path/to/chatgpt2md",
"args": ["serve", "--index", "/path/to/chatgpt_chats/.index", "--chats", "/path/to/chatgpt_chats"]
}
}
}