everything vs Skill_Seekers
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | Skill_Seekers by yusufkaraaslan | |
|---|---|---|
| Stars | ★ 85,748 | ★ 13,581 |
| 30d uses | — | — |
| Score | 77 | 61 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Skill_Seekers · Summary
A comprehensive MCP server that converts documentation, GitHub repos, and PDFs into Claude AI skills with automatic conflict detection.
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
Skill_Seekers · Use cases
- Converting documentation websites into Claude Skills for AI assistants
- Transforming GitHub repositories into structured knowledge for RAG pipelines
- Creating AI skills from PDF documents and video transcripts
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-everythingSkill_Seekers · Install
# Install via pip
pip install skill-seekers
# Basic usage
skill-seekers create https://docs.example.com/
skill-seekers package output/example --target claudeFor Claude Desktop integration, add to your Claude Desktop config:
{
"mcpServers": {
"skill-seekers": {
"command": "skill-seekers",
"args": ["mcp"]
}
}
}