mcp-node-omnibus-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-node-omnibus-server by bsmi021 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9 | ★ 85,748 |
| 30d uses | — | — |
| Score | 35 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 14 mo ago | this month |
mcp-node-omnibus-server · Summary
A comprehensive MCP server providing Node.js development tooling and automation capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-node-omnibus-server · Use cases
- Automating the setup of new Node.js projects with specific configurations
- Generating React components with TypeScript support and documentation
- Creating project documentation and API specifications
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
mcp-node-omnibus-server · Install
Installation via Smithery
To install Node Omnibus Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@bsmi021/mcp-node-omnibus-server):
npx -y @smithery/cli install @bsmi021/mcp-node-omnibus-server --client claudeManual Installation
- Clone the repository
- Install dependencies:
npm installStarting the Server
npm startClaude Desktop Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"node-omnibus": {
"command": "node",
"args": ["path/to/node-omnibus-server/dist/index.js"]
}
}
}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