everything vs chatgpt2md
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | chatgpt2md by NextStat | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30天用量 | — | — |
| 综合分 | 77 | 42 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具效率工具本地文件系统 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 3 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
chatgpt2md · 概述
将ChatGPT导出转换为Markdown并提供全文搜索功能,通过MCP服务器让Claude访问对话历史。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
chatgpt2md · 使用场景
- 直接在Claude中访问ChatGPT对话历史进行上下文参考
- 从大量ChatGPT导出中搜索和检索特定对话
- 以可读的Markdown格式存档ChatGPT对话,并具备全文搜索功能
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingchatgpt2md · 安装
安装
快速安装
cargo install --git https://github.com/NextStat/chatgpt2md二进制文件安装
- 从[发布页](https://github.com/NextStat/chatgpt2md/releases)下载适合您平台的二进制文件
- 解压并移动到PATH:
``bash tar xzf chatgpt2md-*.tar.gz sudo mv chatgpt2md /usr/local/bin/ ``
Claude配置
chatgpt2md install --index ./chatgpt_chats/.index --chats ./chatgpt_chats手动Claude Desktop配置
编辑Claude Desktop配置文件:
- **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"]
}
}
}