MCP Catalogs
首页

Stellaris-Modding-MCP-Server vs filesystem

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

Stellaris-Modding-MCP-Server
by kongyo2
filesystem
by modelcontextprotocol
Stars★ 2★ 85,748
30天用量
综合分3277
官方
分类
开发者工具AI / LLM 工具其它
本地文件系统开发者工具效率工具
实现语言TypeScriptTypeScript
最近提交9 个月前本月

Stellaris-Modding-MCP-Server · 概述

Stellaris 游戏模组开发的 MCP 服务器,提供游戏版本信息、CWTools 配置和可搜索文档。

filesystem · 概述

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

Stellaris-Modding-MCP-Server · 使用场景

  • Stellaris 模组开发者根据最新游戏版本验证触发器和效果
  • 使用准确的文档搜索功能创建新模组
  • 通过访问当前游戏配置文件自动化模组开发工作流程

filesystem · 使用场景

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

Stellaris-Modding-MCP-Server · 安装

安装

通过 npm 安装

npm install -g @kongyo2/stellaris-modding-mcp-server

从源码安装

git clone <repository-url>
cd stellaris-modding-mcp-server
npm install
npm run start

Claude Desktop 配置

添加到 Claude Desktop 配置文件中:

{
  "mcpServers": {
    "stellaris-modding": {
      "command": "npx",
      "args": ["-y", "@kongyo2/stellaris-modding-mcp-server"]
    }
  }
}

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