local-skills-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
local-skills-mcp by kdpa-llc | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
local-skills-mcp · Summary
Universal MCP server that lets any AI agent access expert skills from your local filesystem with lazy loading.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
local-skills-mcp · Use cases
- Create reusable expert skills for specific domains like code review, documentation generation, or data analysis
- Aggregate and organize local AI skills across multiple projects and clients
- Reduce token consumption when working with many specialized AI instructions
- Enable custom AI agents to leverage locally-defined expert knowledge
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
local-skills-mcp · Install
Install
**Requirements:** Node.js 18+
Choose one installation method:
# From npm (recommended)
npm install -g local-skills-mcp
# From GitHub
npm install -g github:kdpa-llc/local-skills-mcp
# Or clone and build locally
git clone https://github.com/kdpa-llc/local-skills-mcp.git
cd local-skills-mcp
npm install # Automatically builds via prepare scriptConfigure
**For Claude Code/Desktop** (~/.config/claude-code/mcp.json or ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"local-skills": {
"command": "local-skills-mcp"
}
}
}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