cursor10x-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
cursor10x-mcp by aiurda | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 79 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 13 mo ago | this month |
cursor10x-mcp · Summary
DevContext (formerly Cursor10x) is an MCP server providing persistent multi-dimensional memory for AI assistants.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
cursor10x-mcp · Use cases
- Maintaining project context across multiple development sessions
- Enhancing AI assistant understanding of code relationships
- Retaining technical decisions and architectural decisions over time
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
cursor10x-mcp · Install
Prerequisites
- Node.js 18 or higher
- npm or yarn package manager
- Turso database account
Setup Steps
- **Configure Turso Database:**
# Install Turso CLI
curl -sSfL https://get.turso.tech/install.sh | bash
# Login to Turso
turso auth login
# Create a database
turso db create cursor10x-mcp
# Get database URL and token
turso db show cursor10x-mcp --url
turso db tokens create cursor10x-mcp- **Configure Cursor MCP:**
Update .cursor/mcp.json in your project directory with the database URL and Turso auth token:
{
"mcpServers": {
"cursor10x-mcp": {
"command": "npx",
"args": ["cursor10x-mcp"],
"enabled": true,
"env": {
"TURSO_DATABASE_URL": "your-turso-database-url",
"TURSO_AUTH_TOKEN": "your-turso-auth-token"
}
}
}
}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