Claude-Skills vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Claude-Skills by borghei | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 138 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | HTML | TypeScript |
| Last commit | this month | this month |
Claude-Skills · Summary
Comprehensive skill library with MCP server integration for Claude Code and other AI assistants.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Claude-Skills · Use cases
- Enable Claude Code to access specialized tools across different domains through MCP integration
- Deploy pre-configured skill sets for specific roles like SaaS founder or compliance officer
- Use AI assistants with domain-specific expertise across 17 professional domains
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
Claude-Skills · Install
Installation
- Run the MCP server:
python scripts/mcp_server.py- For Claude Desktop, add to your Claude Desktop config:
{
"mcpServers": {
"claude-skills": {
"command": "python",
"args": ["scripts/mcp_server.py"],
"env": {}
}
}
}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