MCP Catalogs
首页

tesseron vs everything

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

tesseron
by BrainBlend-AI
everything
by modelcontextprotocol
Stars★ 17★ 85,748
30天用量
综合分4377
官方
分类
开发者工具AI / LLM 工具效率工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交本月本月

tesseron · 概述

Tesseron 是一个 TypeScript SDK,通过 WebSocket 将类型化的 Web 应用程序操作暴露给兼容 MCP 的 AI 代理。

everything · 概述

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

tesseron · 使用场景

  • 让 AI 代理直接与实时 Web 应用程序和桌面应用交互
  • 为 AI 提供类型化接口,在生产力工具中执行复杂操作
  • 在 AI 助手和现有应用程序之间创建无需 API 密钥的无缝集成

everything · 使用场景

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

tesseron · 安装

对于 Claude Code

/plugin marketplace add BrainBlend-AI/tesseron
/plugin install tesseron@tesseron

对于 Claude Desktop

添加到您的配置中:

{
  "mcpServers": {
    "tesseron": { "command": "npx", "args": ["-y", "@tesseron/mcp@2.9.0"] },
    "tesseron-docs": { "command": "npx", "args": ["-y", "@tesseron/docs-mcp@2.9.0"] }
  }
}

在您的应用中

npm install @tesseron/web
# 或 @tesseron/server, @tesseron/react 等

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