littlesis-mcp vs memory
Side-by-side comparison to help you pick between these two MCP servers.
littlesis-mcp by code-rabi | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 32 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphDatabaseAI / LLM Tools | Knowledge GraphAI / LLM ToolsProductivity |
| 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.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
littlesis-mcp · Use cases
- Investigating corporate ownership structures and interconnections
- Tracking political donations and lobbying relationships
- Researching the revolving door between government and business
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
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"
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}