MCP Catalogs
首页

mcp-1c vs filesystem

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

mcp-1c
by feenlace
filesystem
by modelcontextprotocol
Stars★ 98★ 85,748
30天用量
综合分4877
官方
分类
开发者工具AI / LLM 工具数据库
本地文件系统开发者工具效率工具
实现语言GoTypeScript
最近提交本月本月

mcp-1c · 概述

为1C:Enterprise设计的MCP服务器,通过9个工具向AI助手提供元数据并生成准确的BSL代码。

filesystem · 概述

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

mcp-1c · 使用场景

  • AI助手分析1C配置结构并生成准确的BSL代码
  • 在1C模块中进行代码搜索和重构辅助
  • 1C数据库的查询优化和验证
  • 为使用1C:Enterprise的开发人员提供BSL语法帮助

filesystem · 使用场景

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

mcp-1c · 安装

安装

  1. 从[发布页面](https://github.com/feenlace/mcp-1c/releases)下载适合您操作系统的二进制文件
  2. 在您的1C数据库中安装扩展:

```bash # Windows mcp-1c --install "C:\путь\к\базе"

# macOS / Linux mcp-1c --install ~/Documents/InfoBase ```

  1. 启动1C的HTTP服务
  2. 配置您的AI客户端以使用MCP服务器:
{
  "mcpServers": {
    "1c": {
      "command": "/path/to/mcp-1c",
      "args": ["--base", "http://localhost:8080/hs/mcp-1c"]
    }
  }
}

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 公开数据自动生成,定期更新。