everything vs mcp-server-llamacloud
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-server-llamacloud by run-llama | |
|---|---|---|
| Stars | ★ 85,748 | ★ 86 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 11 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-llamacloud · Summary
MCP server connecting to LlamaCloud managed indexes, providing search tools for various document repositories.
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-server-llamacloud · Use cases
- Search SEC financial documents for Tesla and Apple 10K reports
- Query custom document collections stored in LlamaCloud indexes
- Enable AI assistants to retrieve information from private knowledge bases
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-server-llamacloud · Install
Install via npm: npx @llamaindex/mcp-server-llamacloud
Configuration for Claude Desktop:
{
"mcpServers": {
"llamacloud": {
"command": "npx",
"args": [
"-y",
"@llamaindex/mcp-server-llamacloud",
"--index",
"10k-SEC-Tesla",
"--description",
"10k SEC documents from 2023 for Tesla",
"--topK",
"5"
],
"env": {
"LLAMA_CLOUD_API_KEY": "<YOUR_API_KEY>"
}
}
}
}