everything vs mcp-llm
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-llm by sammcj | |
|---|---|---|
| Stars | ★ 85,748 | ★ 78 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 14 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-llm · Summary
An MCP server providing LLMs access to other LLMs with code generation, documentation creation, and question answering tools.
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
mcp-llm · Use cases
- Automated code generation and documentation in software development workflows
- Enhanced AI assistants that can generate and write code files directly
- Multi-step AI workflows requiring code generation and documentation capabilities
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-everythingmcp-llm · Install
Installing via Smithery
npx -y @smithery/cli install @sammcj/mcp-llm --client claudeManual Install From Source
- Clone the repository
- Install dependencies:
npm install- Build the project:
npm run build- Update your MCP configuration