everything vs observee
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | observee by observee-ai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 41 |
| 30天用量 | — | — |
| 综合分 | 77 | 42 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具开发者工具沟通协作 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 9 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
observee · 概述
构建AI代理的SDK,提供1000+集成、OAuth管理和可观测性工具。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
observee · 使用场景
- 构建能够访问Gmail、Slack等服务并具有适当身份验证的AI代理
- 使用预构建的MCP集成实现AI应用程序的工具调用功能
- 在生产环境中监控和记录AI代理的使用情况和性能
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-everythingobservee · 安装
安装
**TypeScript/JavaScript:**
# 一次性安装所有组件
npm install @observee/sdk
# 或单独安装各个包
npm install @observee/agents @observee/auth @observee/logger**Python:**
# 单独安装各个包
pip install mcp-agents agent-oauth mcp-logger
# 或一次性安装所有组件
pip install observee**Claude Desktop配置:** 添加到 claude_desktop_config.json:
{
"mcpServers": {
"observee": {
"command": "python",
"args": ["-m", "observee_agents"]
}
}
}