everything vs awesome-agent-skills-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | awesome-agent-skills-mcp by shadowrootdev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 23 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
awesome-agent-skills-mcp · Summary
MCP server providing 100+ AI agent skills from top organizations including Anthropic, Vercel, and Hugging Face.
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
awesome-agent-skills-mcp · Use cases
- Enhancing AI assistants with specialized skills for document processing, code review, and development best practices
- Automating workflows by invoking skills for security analysis, React optimization, and deployment
- Creating domain-specific AI assistants with curated knowledge from organizations like Anthropic and Vercel
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-everythingawesome-agent-skills-mcp · Install
Installation
Quick Start
npx awesome-agent-skills-mcpGlobal Installation
npm install -g awesome-agent-skills-mcp
awesome-agent-skills-mcpClaude Desktop Configuration
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"awesome-agent-skills": {
"command": "npx",
"args": ["awesome-agent-skills-mcp"]
}
}
}VS Code / GitHub Copilot Configuration
Create or update .vscode/mcp.json in your project:
{
"servers": {
"awesome-agent-skills": {
"command": "npx",
"args": ["awesome-agent-skills-mcp"]
}
}
}