apple-docs-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
apple-docs-mcp by kimsungwhee | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,259 | ★ 85,748 |
| 30d uses | — | — |
| Score | 56 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsSearch | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
apple-docs-mcp · Summary
Apple Developer Documentation MCP server providing searchable access to official docs, APIs, WWDC videos, and code examples across Apple platforms.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
apple-docs-mcp · Use cases
- Quickly search Apple documentation for specific APIs, classes, or methods while coding
- Access SwiftUI and UIKit documentation with related API suggestions
- Search and watch WWDC sessions directly from AI assistants to learn new technologies
- Get code examples and implementation guidance for Apple frameworks
- Track documentation updates and beta features for new iOS/macOS releases
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
apple-docs-mcp · Install
Claude Desktop (Recommended)
Add this to your Claude Desktop configuration: **macOS**: ~/Library/Application Support/Claude/claude_desktop_config.json **Windows**: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"apple-docs": {
"command": "npx",
"args": ["-y", "@kimsungwhee/apple-docs-mcp"]
}
}
}Restart Claude Desktop and start asking about Apple APIs!
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"apple-docs": {
"command": "npx",
"args": ["-y", "@kimsungwhee/apple-docs-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