MCP Catalogs
首页

VSCode-Perplexity-MCP vs everything

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

VSCode-Perplexity-MCP
by Automations-Project
everything
by modelcontextprotocol
Stars★ 50★ 85,748
30天用量
综合分4577
官方
分类
AI / LLM 工具开发者工具浏览器自动化
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交本月本月

VSCode-Perplexity-MCP · 概述

Perplexity AI搜索与推理通过浏览器自动化方式集成为MCP工具,支持VS Code和15+其他IDE。

everything · 概述

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

VSCode-Perplexity-MCP · 使用场景

  • 将Perplexity的搜索功能直接集成到编码环境中
  • 使用AI驱动的推理分析代码和文档
  • 在不离开IDE的情况下自动化研究任务

everything · 使用场景

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

VSCode-Perplexity-MCP · 安装

安装

VS Code扩展

  1. 从[VS Code市场](https://marketplace.visualstudio.com/items?itemName=Nskha.perplexity-vscode)安装
  2. 在命令面板中运行Perplexity: Login
  3. 如需,可为其他IDE启用自动配置

独立MCP服务器

npm install -g perplexity-user-mcp
npx perplexity-user-mcp

Claude Desktop配置

添加到您的claude_desktop_config.json中:

{
  "mcpServers": {
    "perplexity": {
      "command": "npx",
      "args": ["perplexity-user-mcp"]
    }
  }
}

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