MCP Catalogs
首页

STS2MCP vs everything

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

STS2MCP
by Gennadiyev
everything
by modelcontextprotocol
Stars★ 344★ 85,748
30天用量
综合分5077
官方
分类
AI / LLM 工具其它效率工具
开发者工具AI / LLM 工具其它
实现语言C#TypeScript
最近提交本月本月

STS2MCP · 概述

杀戮尖塔2的MCP服务器,为AI代理提供游戏状态和操作接口。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

STS2MCP · 使用场景

  • AI代理自主游玩杀戮尖塔2
  • 自动化重复性游戏任务和刷资源
  • 在复杂游戏环境中研究AI决策能力

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

STS2MCP · 安装

  1. 下载最新版本,将STS2_MCP.dllSTS2_MCP.json复制到<游戏安装目录>/mods/
  2. 启动游戏并在设置中启用模组
  3. 模组会自动在localhost:15526启动HTTP服务器
  4. 设置MCP服务器,安装[uv](https://docs.astral.sh/uv/)并运行:

``bash uv run --directory /path/to/STS2_MCP/mcp python server.py ``

  1. 添加到Claude Desktop配置:

```json { "mcpServers": { "sts2": { "command": "uv", "args": ["run", "--directory", "/path/to/STS2_MCP/mcp", "python", "server.py"] } } }

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。