MCP Catalogs
首页

everything vs janee

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

everything
by modelcontextprotocol
janee
by rsdouglas
Stars★ 85,748★ 28
30天用量
综合分7744
官方
分类
开发者工具AI / LLM 工具其它
安全开发者工具AI / LLM 工具
实现语言TypeScriptTypeScript
最近提交本月2 个月前

everything · 概述

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

janee · 概述

Janee 是一个 MCP 服务器,为 AI 代理提供安全的密钥管理,实现 API 访问而不暴露原始凭据。

everything · 使用场景

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

janee · 使用场景

  • 安全地使 AI 代理能够访问各种 API 而不暴露 API 密钥
  • 为 AI 代理的 API 交互提供审计跟踪和策略执行
  • 为自主代理管理临时凭据并实现自动撤销

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

janee · 安装

安装

npm install -g @true-and-useful/janee

配置

janee init
janee add
# 编辑 ~/.janee/config.yaml 添加您的服务
janee serve

Claude Desktop 集成

添加到 claude_desktop_config.json

{
  "mcpServers": {
    "janee": {
      "command": "janee",
      "args": ["serve"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。