MCP Catalogs
Home

littlesis-mcp vs everything

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

littlesis-mcp
by code-rabi
everything
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score3277
Official
Categories
Knowledge GraphDatabaseAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

littlesis-mcp · Summary

MCP server providing access to LittleSis API for tracking corporate power and relationships.

everything · Summary

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

littlesis-mcp · Use cases

  • Investigating corporate ownership structures and interconnections
  • Tracking political donations and lobbying relationships
  • Researching the revolving door between government and business

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

littlesis-mcp · Install

Installation

Via Smithery (Recommended)

npx -y @smithery/cli install @code-rabi/littlesis-mcp --client claude

Manual Installation

Clone the repository and install dependencies:

git clone https://github.com/code-rabi/littlesis-mcp.git
cd littlesis-mcp
npm install
npm run build

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
    "mcpServers": {
        "littlesis": {
            "command": "node",
            "args": ["dist/index.js"],
            "cwd": "/path/to/littlesis-mcp"
        }
    }
}

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.