MCP Catalogs
Home

devcontext vs everything

Side-by-side comparison to help you pick between these two MCP servers.

devcontext
by aiurda
everything
by modelcontextprotocol
Stars★ 45★ 85,748
30d uses
Score4277
Official
Categories
Developer ToolsAI / LLM ToolsKnowledge Graph
Developer ToolsAI / LLM ToolsOther
LanguageHTMLTypeScript
Last commit12 mo agothis month

devcontext · Summary

Autonomous MCP server providing project-centric context awareness through pattern learning and relationship graphs.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

devcontext · Use cases

  • Autonomous development environment with Cursor Rules integration
  • Real-time code context retrieval during conversations
  • Pattern recognition and development workflow optimization

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

devcontext · Install

Installation

Prerequisites

  • Node.js 18.0.0 or higher
  • Cursor IDE with MCP support
  • TursoDB account

Step 1: Set up TursoDB Database

  1. Sign up for [Turso](https://turso.tech/) and create an account
  2. Install Turso CLI (optional but recommended):

``bash curl -sSfL https://get.turso.tech/install.sh | bash ``

  1. Authenticate with Turso:

``bash turso auth login ``

  1. Create a project database:

``bash turso db create devcontext ``

  1. Get database credentials and save both URL and token

Step 2: Configure MCP in Cursor

Create or edit .cursor/mcp.json in your project directory:

{
  "mcpServers": {
    "devcontext": {
      "command": "npx",
      "args": ["-y", "devcontext@latest"],
      "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
Comparison generated from public README + GitHub signals. Last updated automatically.