MCP Catalogs
首页

deterministic-agent-control-protocol vs everything

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

deterministic-agent-control-protocol
by elliot35
everything
by modelcontextprotocol
Stars★ 86★ 85,748
30天用量
综合分4677
官方
分类
开发者工具安全AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交3 个月前本月

deterministic-agent-control-protocol · 概述

一个为AI代理提供有界、可审计控制的治理网关,通过MCP代理、Shell代理和HTTP API实现。

everything · 概述

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

deterministic-agent-control-protocol · 使用场景

  • 防止AI代理访问敏感文件和机密信息,提高安全性
  • 在企业环境中为所有代理操作提供审计追踪
  • 在开发和部署工作流中执行组织策略

everything · 使用场景

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

deterministic-agent-control-protocol · 安装

安装

npm install @det-acp/core

快速开始

为您的AI代理初始化治理:

npx det-acp init cursor        # 用于Cursor
npx det-acp init codex         # 用于Codex CLI
npx det-acp init claude-code   # 用于Claude Code

配置Claude Desktop(如果适用):

{
  "mcpServers": {
    "det-acp": {
      "command": "npx",
      "args": ["-y", "@det-acp/core"]
    }
  }
}

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