MCP Catalogs
Home

mcp-database-server vs everything

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

mcp-database-server
by executeautomation
everything
by modelcontextprotocol
Stars★ 351★ 85,748
30d uses
Score4777
Official
Categories
DatabaseDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

mcp-database-server · Summary

MCP Database Server connects SQLite, SQL Server, PostgreSQL and MySQL databases to Claude.

everything · Summary

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

mcp-database-server · Use cases

  • Data analysis and reporting by querying databases through Claude
  • Database schema management and modification using Claude's natural language interface
  • Data export and integration with other Claude-based workflows

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-database-server · Install

Installation

  1. Install the package globally:
npm install -g @executeautomation/database-server
  1. Configure Claude Desktop with this example:
{
  "mcpServers": {
    "sqlite": {
      "command": "npx",
      "args": [
        "-y",
        "@executeautomation/database-server",
        "/path/to/your/database.db"
      ]
    }
  }
}

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.