VSCode-Perplexity-MCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
VSCode-Perplexity-MCP by Automations-Project | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 50 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsBrowser Automation | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
VSCode-Perplexity-MCP · Summary
Perplexity AI search and reasoning integrated as MCP tools for VS Code and 15+ other IDEs through a browser automation approach.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
VSCode-Perplexity-MCP · Use cases
- Integrating Perplexity's search capabilities directly into the coding environment
- Using AI-powered reasoning to analyze code and documentation
- Automating research tasks without leaving the IDE
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
VSCode-Perplexity-MCP · Install
Installation
VS Code Extension
- Install from the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=Nskha.perplexity-vscode)
- Run
Perplexity: Loginin the command palette - Enable auto-config for other IDEs if desired
Standalone MCP Server
npm install -g perplexity-user-mcp
npx perplexity-user-mcpClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"perplexity": {
"command": "npx",
"args": ["perplexity-user-mcp"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything