Agent-Fusion vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Agent-Fusion by krokozyab | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 66 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsFile SystemSearch | Developer ToolsAI / LLM ToolsOther |
| Language | Kotlin | TypeScript |
| Last commit | 1 mo ago | this month |
Agent-Fusion · Summary
Local RAG semantic search engine providing AI agents access to code, documentation and PDFs via MCP protocol.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Agent-Fusion · Use cases
- Enhancing AI coding assistants with context-aware codebase exploration
- Enabling document analysis and search across various file formats
- Facilitating multi-agent collaboration for complex development tasks
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
Agent-Fusion · Install
Installation
Agent Fusion runs as a single JAR file with a TOML configuration file:
- Download the latest JAR from the [releases page](https://github.com/krokozyab/Agent-Fusion/releases)
- Create a
fusionagent.tomlconfiguration file - Run the JAR with Java:
java -jar agent-fusion.jar
Claude Desktop Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"agent-fusion": {
"command": "java",
"args": ["-jar", "/path/to/agent-fusion.jar"],
"env": {}
}
}
}The Context Engine will be available through the query_context tool.
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