everything vs tauri-plugin-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | tauri-plugin-mcp by P3GLEG | |
|---|---|---|
| Stars | ★ 85,748 | ★ 96 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsBrowser AutomationProductivity |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
tauri-plugin-mcp · Summary
Tauri plugin enabling AI agents to debug applications through screenshots, DOM access, and input simulation.
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
tauri-plugin-mcp · Use cases
- Automated UI testing and debugging of Tauri applications by AI agents
- Visual regression testing and automated bug reporting in desktop apps
- AI-powered development assistance for cross-platform desktop applications
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-everythingtauri-plugin-mcp · Install
Installation
- **Install the Tauri plugin**:
npm install tauri-plugin-mcp- **Register the plugin in your Tauri app**:
#[cfg(debug_assertions)]
{
builder = builder.plugin(tauri_plugin_mcp::init_with_config(
tauri_plugin_mcp::PluginConfig::new("APPLICATION_NAME".to_string())
.start_socket_server(true)
.socket_path("/tmp/tauri-mcp.sock")
));
}- **Configure your AI agent** (e.g., Claude Desktop):
{
"mcpServers": {
"tauri-mcp": {
"command": "npx",
"args": ["tauri-plugin-mcp-server"]
}
}
}