MCP Catalogs
Home

uk-case-law-mcp-server vs everything

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

uk-case-law-mcp-server
by georgejeffers
everything
by modelcontextprotocol
Stars★ 23★ 85,748
30d uses
Score4277
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit5 mo agothis month

uk-case-law-mcp-server · Summary

UK case law MCP server using The National Archives API to search, retrieve, and cite UK legal judgments.

everything · Summary

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

uk-case-law-mcp-server · Use cases

  • Legal research to find relevant case law on specific legal topics
  • Analysis of court decisions across different jurisdictions in the UK
  • Retrieving full text of landmark judgments for detailed examination

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

uk-case-law-mcp-server · Install

Installation

Prerequisites

  • Bun runtime

Setup

# Clone the repository
git clone https://github.com/georgejeffers/uk-case-law-mcp-server.git
cd uk-case-law-mcp-server

# Install dependencies
bun install

# Run tests
bun test

# Start the server
bun start

Claude Desktop Configuration

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "uk-case-law": {
      "command": "bun",
      "args": ["run", "/path/to/uk-case-law-mcp/src/server.ts"]
    }
  }
}

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.