MCP Catalogs
首页

Kaimon.jl vs filesystem

并排对比,帮你在这两个 MCP server 之间做选择。

Kaimon.jl
by kahliburke
filesystem
by modelcontextprotocol
Stars★ 67★ 85,748
30天用量
综合分4677
官方
分类
开发者工具AI / LLM 工具其它
本地文件系统开发者工具效率工具
实现语言JuliaTypeScript
最近提交1 个月前本月

Kaimon.jl · 概述

MCP 服务器为 AI 代理提供完整的 Julia 运行时访问,包括代码执行、调试、测试和语义搜索。

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

Kaimon.jl · 使用场景

  • AI 辅助 Julia 开发,具有实时代码执行和调试功能
  • 跨 Julia 项目的语义代码搜索,以找到相关实现
  • 通过自定义 MCP 工具将基于 Julia 的领域工具集成到 AI 工作流中

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

Kaimon.jl · 安装

安装

  1. 在 Julia 中安装 Kaimon.jl:
]app add Kaimon
  1. 运行 kaimon 命令:
kaimon

首次运行将打开设置向导(安全模式、API 密钥、端口)。

Claude Desktop 配置

添加到 Claude Desktop 的 config.json:

{
  "mcpServers": {
    "kaimon": {
      "command": "kaimon",
      "args": []
    }
  }
}

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 中安装。

对比内容由 README + GitHub 公开数据自动生成,定期更新。