everything vs mcp-framework
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-framework by QuantGeekDev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 916 |
| 30d uses | — | — |
| Score | 77 | 54 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-framework · Summary
TypeScript framework for building MCP servers with automatic discovery, type safety, and multiple transport options.
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-framework · Use cases
- Building custom MCP servers for AI assistants with specific domain functionality
- Creating cryptocurrency tipping services like tip.md
- Developing enterprise tools with secure authentication and multiple transport options
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-everythingmcp-framework · Install
Installation
# Install the framework globally
npm install -g mcp-framework
# Create a new MCP server project
mcp create my-mcp-server
# Navigate to your project
cd my-mcp-server
# Your server is ready to use!Using with Claude Desktop
Add this configuration to your Claude Desktop config file:
{
"mcpServers": {
"my-mcp-server": {
"command": "node",
"args": ["/absolute/path/to/my-mcp-server/dist/index.js"]
}
}
}