mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by agentico-dev | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 3 | ★ 85,748 |
| 30d uses | — | — |
| Score | 30 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 16 mo ago | this month |
mcp-server · Summary
A facade library that simplifies MCP server implementation by providing a base class and registration pattern.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server · Use cases
- Rapid prototyping of MCP servers with custom tools
- Creating consistent tool implementations across multiple MCP servers
- Simplifying the learning curve for new MCP developers
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-server · Install
Install the package with npm:
yarn add @agentico/mcp-serverTo use with Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"my-server": {
"command": "node",
"args": ["/path/to/your/server.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