MCP Catalogs
首页

mcp-onesearch-api-poc vs everything

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

mcp-onesearch-api-poc
by bdobyns
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30天用量
综合分2177
官方
分类
搜索AI / LLM 工具开发者工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交1 个月前本月

mcp-onesearch-api-poc · 概述

概念验证 MCP 服务器,实现了 onesearch-api 及多种搜索工具和过滤器。

everything · 概述

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

mcp-onesearch-api-poc · 使用场景

  • 通过 MCP 服务器接口让 LLM 执行复杂搜索
  • 通过 MCP 工具提供对 onesearch-api 功能的结构化访问
  • 演示搜索 API 与 MCP 协议之间的集成模式

everything · 使用场景

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

mcp-onesearch-api-poc · 安装

  1. 克隆仓库:git clone https://github.com/bdobyns/mcp-onesearch-api-poc.git
  2. 安装依赖:npm install
  3. 运行服务器:npm start

对于 Claude Desktop,添加到您的 config.json:

{
  "mcpServers": {
    "onesearch-api": {
      "command": "node",
      "args": ["path/to/mcp-onesearch-api-poc/server.js"]
    }
  }
}

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