filesystem vs chatgpt2md
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | chatgpt2md by NextStat | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30天用量 | — | — |
| 综合分 | 77 | 42 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | AI / LLM 工具效率工具本地文件系统 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 3 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
chatgpt2md · 概述
将ChatGPT导出转换为Markdown并提供全文搜索功能,通过MCP服务器让Claude访问对话历史。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
chatgpt2md · 使用场景
- 直接在Claude中访问ChatGPT对话历史进行上下文参考
- 从大量ChatGPT导出中搜索和检索特定对话
- 以可读的Markdown格式存档ChatGPT对话,并具备全文搜索功能
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 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 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
chatgpt2md · 安装
安装
快速安装
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"]
}
}
}