Agent Fusion

v1.0.0Knowledge & Memorystable

Agent Fusion is a local RAG semantic search engine that gives AI agents instant access to your code, documentation (Markdown, Word, PDF). Query your codebase from code agents without hallucinations. Runs 100% locally, includes a lightweight embedding

agentaiaws-qclaudeclaude-code
Share:
66
Stars
0
Downloads
0
Weekly
0/5

What is Agent Fusion?

Agent Fusion is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to agent fusion is a local rag semantic search engine that gives ai agents instant access to your code, documentation (markdown, word, pdf). query your codebase from code agents without hallucinations. r...

Agent Fusion is a local RAG semantic search engine that gives AI agents instant access to your code, documentation (Markdown, Word, PDF). Query your codebase from code agents without hallucinations. Runs 100% locally, includes a lightweight embedding

This server falls under the Knowledge & Memory category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Agent Fusion is a local RAG semantic search engine that give

Use Cases

Local RAG semantic search for code and docs
Query codebase without hallucinations
krokozyab

Maintainer

LicenseMIT
Languagekotlin
Versionv1.0.0
UpdatedMay 22, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx agent-fusion

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Agent Fusion

Agent Fusion is a local RAG (Retrieval-Augmented Generation) semantic search engine packaged as an MCP server, giving AI coding agents instant access to your codebase and documentation without sending any data to the cloud. It indexes Markdown, Word, PDF, and source code files into a local DuckDB database and exposes a single powerful query_context tool that runs semantic search, symbol matching, and full-text keyword search in parallel. The server runs as a self-contained JAR file that requires Java 21 and no external API keys.

Prerequisites

  • Java 21 or later installed (download from adoptium.net)
  • At least one directory of code, Markdown, PDF, or DOCX files to index
  • An MCP-compatible client such as Claude Desktop, Claude Code, or Cursor
  • The Agent Fusion release ZIP downloaded from the GitHub releases page
1

Download the Agent Fusion release

Go to https://github.com/krokozyab/Agent-Fusion/releases and download the latest release.zip. Extract it to a permanent location — you will find orchestrator-0.1.0-all.jar, a fusionagent.toml config file, and startup scripts.

2

Configure watch paths in fusionagent.toml

Edit fusionagent.toml and set watch_paths to the directories you want Agent Fusion to index. The file watcher automatically re-indexes changes without manual refresh.

watch_paths = [
    "/Users/yourname/projects/my-app",
    "/Users/yourname/docs"
]
3

Start the Agent Fusion server

Run the startup script for your platform. The server starts an HTTP MCP endpoint on port 3000 and opens an admin dashboard in your browser.

# macOS / Linux
./start.sh

# Verify it is running
curl http://127.0.0.1:3000/mcp
4

Configure your MCP client to connect

Add the Agent Fusion server to your claude_desktop_config.json using the proxy script included in the release, or connect Claude Code directly via HTTP transport.

# Claude Code (HTTP transport)
claude mcp add --transport http orchestrator http://127.0.0.1:3000/mcp

# Claude Desktop (claude_desktop_config.json)
{
  "mcpServers": {
    "agent-fusion": {
      "command": "/path/to/orchestrator-mcp-proxy.sh",
      "env": {
        "MCP_ENDPOINT": "http://127.0.0.1:3000/mcp/json-rpc"
      }
    }
  }
}
5

Wait for initial indexing to complete

On first start Agent Fusion indexes all files in the configured watch_paths. Check the admin dashboard in your browser to track indexing progress before making queries.

Agent Fusion Examples

Client configuration

Claude Desktop config connecting to the locally running Agent Fusion MCP endpoint via the proxy script.

{
  "mcpServers": {
    "agent-fusion": {
      "command": "/path/to/orchestrator-mcp-proxy.sh",
      "env": {
        "MCP_ENDPOINT": "http://127.0.0.1:3000/mcp/json-rpc"
      }
    }
  }
}

Prompts to try

Example queries to send to your AI assistant once Agent Fusion is indexing your codebase.

- "Use query_context to find all authentication logic in the codebase"
- "Search my indexed docs for anything about database connection pooling"
- "Find the error handling patterns used across the project"
- "Where is JWT validation implemented in my code?"
- "Search for all places where the UserService class is referenced"

Troubleshooting Agent Fusion

Server fails to start with Java version error

Agent Fusion requires Java 21 or higher. Run 'java --version' to check. Download the latest LTS release from adoptium.net and ensure it is on your PATH before running start.sh.

query_context returns no results for files that exist

Check the admin dashboard to confirm the relevant directories are listed in watch_paths in fusionagent.toml and that initial indexing has completed. Also verify the file types are among the supported formats (.kt, .py, .ts, .java, .pdf, .docx, .md).

MCP client cannot connect to the server endpoint

Confirm the server is running by visiting http://127.0.0.1:3000 in a browser. Ensure the MCP_ENDPOINT in your config points to http://127.0.0.1:3000/mcp/json-rpc and that no firewall is blocking port 3000.

Frequently Asked Questions about Agent Fusion

What is Agent Fusion?

Agent Fusion is a Model Context Protocol (MCP) server that agent fusion is a local rag semantic search engine that gives ai agents instant access to your code, documentation (markdown, word, pdf). query your codebase from code agents without hallucinations. runs 100% locally, includes a lightweight embedding It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Agent Fusion?

Follow the installation instructions on the Agent Fusion GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Agent Fusion?

Agent Fusion works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Agent Fusion free to use?

Yes, Agent Fusion is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Knowledge & Memory MCP Servers

Explore all knowledge & memory servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "agent-fusion": { "command": "npx", "args": ["-y", "agent-fusion"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Agent Fusion?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides