MCP Catalogs
HomeAgent-Fusion screenshot

Agent-Fusion

by krokozyab·66·Score 46

Local RAG semantic search engine providing AI agents access to code, documentation and PDFs via MCP protocol.

ai-llmdeveloper-toolsfile-systemsearch
4
Forks
1
Open issues
1 mo ago
Last commit
2d ago
Indexed

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:

you:Enhancing AI coding assistants with context-aware codebase exploration
you:Enabling document analysis and search across various file formats
you:Facilitating multi-agent collaboration for complex development tasks
you:What file types does Agent Fusion support?
you:Can I use Agent Fusion without the Task Manager?

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 README
  • query_context

    Searches indexed code, documents, and PDFs using semantic, symbol, and full-text search methods

Comparable tools

semantic-search-mcpsourcegraph-mcpcode-search-agent

Installation

Installation

Agent Fusion runs as a single JAR file with a TOML configuration file:

  1. Download the latest JAR from the [releases page](https://github.com/krokozyab/Agent-Fusion/releases)
  2. Create a fusionagent.toml configuration file
  3. 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.