everything vs unplugin-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | unplugin-mcp by situ2001 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 31 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
unplugin-mcp · Summary
A unified plugin for integrating MCP servers into JavaScript build tools like Webpack, Rollup, and Vite.
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
unplugin-mcp · Use cases
- Enable AI assistants to understand module dependencies and build configurations during development
- Allow AI to debug build errors and provide suggestions for fixing them
- Integrate AI directly into the build process to automatically optimize bundling or resolve dependencies
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-everythingunplugin-mcp · Install
# Install the plugin
pnpm add -D unplugin-mcp
# or install bundler-specific one
pnpm add -D rollup-plugin-mcpFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"rollup": {
"url": "http://localhost:14514/mcp/sse"
}
}
}