Gearlynx vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
Gearlynx by drhelius | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 65 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具多媒体 | 本地文件系统开发者工具效率工具 |
| 实现语言 | C++ | TypeScript |
| 最近提交 | 本月 | 本月 |
Gearlynx · 概述
Gearlynx 是一款跨平台雅利 Lynx 模拟器,内置 MCP 服务器支持 AI 辅助调试。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
Gearlynx · 使用场景
- AI 辅助调试复古游戏代码和自制应用程序
- 使用 AI 代理进行 ROM 分析和逆向工程
- 与开发工作流程集成,实现复古游戏保存
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
Gearlynx · 安装
安装
- 从 [GitHub 发布页面](https://github.com/drhelius/Gearlynx/releases) 下载适合您平台的二进制文件
- 解压归档文件并运行可执行文件
- 将 Lynx BIOS 文件放入应用程序目录
使用 MCP 服务器启动
要启动带有 MCP 服务器的模拟器:
gearlynx --mcp-stdio [rom文件]对于 HTTP 传输:
gearlynx --mcp-http --mcp-http-port 7777 [rom文件]Claude Desktop 配置
添加到 Claude Desktop 的 config.json:
{
"mcpServers": {
"gearlynx": {
"command": "gearlynx路径",
"args": ["--mcp-stdio"]
}
}
}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 中安装。