mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by Aayush9029 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 42 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
mcp-server · Summary
A task management MCP server that connects AI assistants to iPhone task tracking with notifications.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server · Use cases
- AI assistants create tasks during coding sessions that sync to iPhone
- Automatically update task status as AI completes work
- Receive iPhone notifications when AI assistants finish tasks
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
mcp-server · Install
Quick Start
1. Get Your API Key
Download the iOS app from the App Store
2. Configure Claude Desktop
Add this to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"task-manager": {
"command": "npx",
"args": [
"mcp-remote",
"https://task-mcp-server.aayushpokharel9029.workers.dev/sse?apiKey=YOUR_API_KEY"
]
}
}
}3. Configure Other MCP Clients
For Cursor or other MCP clients:
{
"mcpServers": {
"task-manager": {
"url": "https://task-mcp-server.aayushpokharel9029.workers.dev/sse?apiKey=YOUR_API_KEY"
}
}
}Replace YOUR_API_KEY with your actual API key.
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