llm-context.py vs everything
Side-by-side comparison to help you pick between these two MCP servers.
llm-context.py by cyberchitta | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 300 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
llm-context.py · Summary
Smart context management tool that allows sharing relevant project files with LLMs via MCP or clipboard with rule-based customization.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
llm-context.py · Use cases
- Daily development workflow for humans to quickly share relevant project files with LLMs
- AI agents to create focused contexts for specific sub-tasks
- Code review and documentation generation with task-specific rules
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
llm-context.py · Install
# Install as a tool
uv tool install "llm-context>=0.6.0"
# MCP Integration for Claude Desktop
Add to Claude Desktop config (~//Library/Application Support/Claude/claude_desktop_config.json):
```jsonc
{
"mcpServers": {
"llm-context": {
"command": "uvx",
"args": ["--from", "llm-context", "lc-mcp"]
}
}
}Initialize project:
cd your-project
lc-initeverything · 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