
Agent-Fusion
by krokozyab·★ 66·Score 46
Local RAG semantic search engine providing AI agents access to code, documentation and PDFs via MCP protocol.
Overview
Agent Fusion is a local RAG semantic search engine that gives AI agents instant access to your code, documentation, and PDFs through the MCP protocol. It consists of two main components: a Context Engine for intelligent indexing and search, and an optional Task Manager for coordinating multiple AI agents. The system runs entirely locally with no external dependencies, using a lightweight embedding model that can be replaced with more powerful options. It provides semantic, symbol, and full-text search capabilities to help agents find relevant code and documentation without hallucinations.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose Agent Fusion when you need a local RAG search engine for AI agents to query your codebase and documentation without internet connectivity or cloud dependencies.
When NOT to choose this
Don't choose Agent Fusion if you need cloud-based search capabilities, real-time collaboration features, or require integration with non-local file systems.
Tools this server exposes
1 tool extracted from the READMEquery_contextSearches indexed code, documents, and PDFs using semantic, symbol, and full-text search methods
Comparable tools
Installation
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.
FAQ
- What file types does Agent Fusion support?
- Agent Fusion supports code files (.kt, .py, .ts, .java), documents (.pdf, .docx, .md), and any custom file types you configure in the configuration file.
- Can I use Agent Fusion without the Task Manager?
- Yes, the Context Engine can be used independently for semantic search without the Task Manager component.
Compare Agent-Fusion with
Last updated · Auto-generated from public README + GitHub signals.