swift-skeleton vs everything
Side-by-side comparison to help you pick between these two MCP servers.
swift-skeleton by 1amageek | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 15 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | C | TypeScript |
| Last commit | 1 mo ago | this month |
swift-skeleton · Summary
Swift code skeleton extractor that provides structural overviews of codebases via MCP for better LLM code exploration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
swift-skeleton · Use cases
- Providing AI coding assistants with code structure overview before diving into implementation details
- Helping developers quickly understand unfamiliar codebases by examining their skeleton structure
- Enabling efficient navigation of large codebases by focusing on declarations and relationships
- Supporting code analysis tools with fast indexing and querying capabilities
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
swift-skeleton · Install
Installation Options
**Mint (recommended)**
mint install 1amageek/swift-skeleton**Build from source**
git clone https://github.com/1amageek/swift-skeleton.git
cd swift-skeleton
swift build -c release**MCP Configuration for Claude Desktop** Add to your claude_desktop_config.json:
{
"mcpServers": {
"swift-skeleton": {
"command": "path/to/skltn",
"args": ["daemon"]
}
}
}**Agent Skill Installation**
skltn install-skilleverything · 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