everything vs plasmate
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | plasmate by plasmate-labs | |
|---|---|---|
| Stars | ★ 85,748 | ★ 21 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Browser AutomationWeb ScrapingAI / LLM Tools |
| Language | TypeScript | HTML |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
plasmate · Summary
Plasmate is a browser engine for agents that converts HTML to a compact Semantic Object Model (SOM) via MCP.
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
plasmate · Use cases
- Web content extraction and summarization for AI agents
- Interactive web automation through stable element identifiers
- Efficient browser rendering for token-conscious LLM 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-everythingplasmate · Install
Install via package manager:
cargo install plasmate # Rust
npm install -g plasmate # Node.js
pip install plasmate # PythonFor Claude Desktop integration, add to your config:
{
"mcpServers": {
"plasmate": {
"command": "plasmate",
"args": ["mcp"]
}
}
}