perplexity-web-api-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
perplexity-web-api-mcp by mishamyrt | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 72 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | 搜索AI / LLM 工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
perplexity-web-api-mcp · 概述
一个无需 API 密钥的 MCP 服务器,通过会话令牌提供 Perplexity AI 搜索和推理功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
perplexity-web-api-mcp · 使用场景
- 将网络搜索功能集成到 AI 应用程序中,无需 API 成本
- 使研究助理能够访问来自网络的最新信息
- 将 Perplexity 的推理功能添加到自定义 AI 工作流中
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
perplexity-web-api-mcp · 安装
安装
**NPM 安装(推荐)**
npm install -g perplexity-web-api-mcp**Docker**
docker run -d -p 8080:8080 -e PERPLEXITY_SESSION_TOKEN="您的令牌" mishamyrt/perplexity-web-api-mcp**Claude Desktop 配置** 添加到 claude_desktop_config.json:
{
"mcpServers": {
"perplexity": {
"command": "npx",
"args": ["-y", "perplexity-web-api-mcp"],
"env": {
"PERPLEXITY_SESSION_TOKEN": "您的会话令牌",
"PERPLEXITY_CSRF_TOKEN": "您的 CSRF 令牌"
}
}
}
}**无令牌模式**:省略上述环境变量以使用基本功能而不进行身份验证。
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