erickwendel-contributions-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
erickwendel-contributions-mcp by ErickWendel | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 232 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 4 mo ago | this month |
erickwendel-contributions-mcp · Summary
A TypeScript MCP server providing tools to query Erick Wendel's contributions across different platforms with full MCP capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
erickwendel-contributions-mcp · Use cases
- Querying technical talks by year, language, or location
- Finding blog posts about specific topics like WebXR
- Accessing content statistics and generating activity summaries
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
erickwendel-contributions-mcp · Install
Quick Start with Claude Desktop
Add this configuration to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"erickwendel-contributions": {
"command": "npx",
"args": ["-y", "@erickwendel/contributions-mcp"]
}
}
}Local Development
- Clone the repository and install dependencies:
git clone https://github.com/ErickWendel/erickwendel-contributions-mcp.git
cd erickwendel-contributions-mcp
npm ci- Add this configuration for local development:
{
"mcpServers": {
"erickwendel-contributions": {
"command": "node",
"args": ["--experimental-strip-types", "ABSOLUTE_PATH_TO_PROJECT/src/index.ts"]
}
}
}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