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 | — | — |
| Score | 32 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphDatabaseAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this 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 claudeManual Installation
Clone the repository and install dependencies:
git clone https://github.com/code-rabi/littlesis-mcp.git
cd littlesis-mcp
npm install
npm run buildClaude 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