Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’° Finance & Fintech
  3. Fuse
F
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:05:48 AM

Fuse

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Token-efficient .NET codebase context for AI coding agents: skeleton, scoping, change-aware fusion.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "fuse": {
      "command": "npx",
      "args": [
        "-y",
        "fuse"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’° More in Finance & Fintech

Documentation Overview

Fuse

CI NuGet version NuGet downloads License

Fuse

Fuse is a local .NET tool with a persistent syntax index, typed-graph wiring resolution on demand, reduced task-scoped source, and pre-write compiler verification for coding agents. It stores repository facts in .fuse/fuse.db and reuses them across agent turns instead of rediscovering the same structure through repeated file reads and text searches.

From a .NET project inside a Git repository:

bash
dotnet tool install -g Fuse
fuse mcp install

The installer supports Claude Code, Cursor, GitHub Copilot, OpenCode, Kilo Code, Codex, and Grok Build. Use --client <name> to configure one client; the default all configures all seven for the selected scope. fuse mcp install writes MCP registration and a short, versioned managed block in the client's documented instruction file, such as AGENTS.md or CLAUDE.md. Pass --no-rules to register MCP without the managed block. --with-hooks separately writes project-scoped Claude Code hooks. Run fuse mcp doctor after installation to inspect registration, managed guidance, daemon reachability, and index state. See Connect your coding agent for the exact file and scope matrix.

Reload your MCP client, then ask:

text
Resolve IOrderService to its implementation, then check the proposed OrderService.cs edit
with fuse_check before writing it.

When the MCP server starts, its shared local daemon owns one index job for the repository. A cold read starts a syntax index and reports its job state. Run fuse index to render progress in a terminal, fuse index --semantic for explicit compiler analysis, and fuse index status or fuse index cancel to control the job. The installer adds .fuse/ to .gitignore at project scope.

Every MCP operation except fuse_reduce requires a Git repository identity. Fuse walks upward to the nearest .git directory or file, so a call from a nested source or output folder uses the same repository-root daemon, lock, and index. A non-Git folder returns workspace_identity_unresolved: without starting a daemon or writing an index; fuse_reduce remains available. Each warm index records its repository root and complete file inventory. A missing or incomplete manifest rebuilds automatically even when the database already contains file rows.

An agent proposes an edit with an invalid OrderOptions member. fuse_check returns CS1061 and a repair packet, then verifies the corrected proposal.

Analysis runs locally and can work offline. Fuse walks a typed graph of DI registrations, handlers, routes, and callers, emits reduced source for a selected scope, and lets a coding agent typecheck proposed single-file content before writing it. No model is required. The optional update check can contact NuGet, and build-grade operations can use the package feeds configured for the repository.

Persistent Discovery and Reduced Context

Coding agents can inspect a repository through file reads, grep, and regex. On a large solution, those operations can rediscover the same symbols, references, registrations, and project structure across several turns. Fuse performs that discovery through MSBuild and Roslyn, persists the result, and incrementally re-indexes files as they change.

When a project loads semantically, the graph records DI registrations, request handlers, routes, options bindings, and call edges. When it does not, Fuse falls back to syntax-level indexing for that project and reports the mode.

  • Resolve wiring. fuse_find traces a service, request, route, or configuration section to the code that handles it. Text search finds IOrderService; Fuse follows the registration to the implementation that runs.
  • Pack branch context. fuse_review seeds on the git diff and returns related callers, handlers, and tests with provenance. On 69 recorded pull requests the median response was 1,026 tokens at 93.4 percent precision (review.json).
  • Return less source. fuse_context reduces the selected files under a token budget and records why each file was included. Across four recorded repositories, skeleton reduction removed 38 to 44 percent of tokens while retaining every measured public and protected type name (reduce.json).
  • Read warm. On the recorded NodaTime run (semantic tier, 14,760 symbols), exact symbol lookup took 1.8 ms at the median, task localization 15.7 ms, and review planning 106.3 ms (performance.json; timings are environment-dependent).

Fuse resolves an interface through dependency injection registration to its concrete implementation and related callers.

Compiler Checks and Change Verification

  • fuse_check checks the proposed content of one file and returns compiler diagnostics without changing the working tree. Oracle grade reuses compiler state captured from the real build. Build grade runs a scoped dotnet build for the owning project when captured state is unavailable. Supported API-shape errors can include a repair packet; in the recorded run, the top suggestion repaired 20 of 20 near-miss member and type errors (diagbench.json).
  • Before changing a public method, fuse_impact finds callers, implementations, and referencing types. Given a package id and two versions, it returns the break set for that NuGet upgrade.
  • When a signature must change, fuse_refactor stages the refactor as a diff and returns it only when the compiler reports no new diagnostic.
  • After an edit, fuse_test selects and runs the test types that reach the changed symbol, grouped by owning project, instead of starting with the whole suite.

Every answer names how it was produced. Fuse calls this the verification grade: oracle grade checks against the compilation captured from the real build, build grade runs a scoped dotnet build, and when neither compiler path can answer, Fuse abstains and names the missing prerequisite instead of guessing.

What the Recorded Results Cover

Every result below comes from tests/benchmarks/results and has a reproduction command on the benchmarks page.

  • Across 1,000 compiler-labeled edits in the recorded OrderingApp test app (500 breaking, 500 neutral), fuse_check reported zero broken edits as clean and rejected zero valid edits (checkgate.json).
  • In the same app, Fuse matched all 24 expected .NET wiring links with no extra matches (semantics.json).
  • Across 69 real pull requests, branch review retained every git-changed file by construction at 93.4 percent precision with a median size of 1,026 tokens (review.json).
  • In the reduced-scope agent-loop run, the Fuse arm's edits passed the project's own tests on the first attempt in 89 percent of scored rollouts versus 82 percent for native tools, with overlapping confidence intervals. The Fuse arm declared success on a failing edit 8 times versus 9 for native. Build and test calls were essentially equal at 3.1 versus 3.2 (loop.json).
  • Across four recorded repositories, skeleton reduction removed 38 to 44 percent of tokens while keeping every public and protected type name and 96.3 to 99.4 percent of method names (reduce.json).

The opt-in resident workspace answered repeated fuse_check calls in 31.2 ms at the median on the recorded NodaTime run (resident-latency.json). That path is faster than a full build for speculative checks; it does not replace normal builds or tests before merge.

These measurements have defined limits. Read the full methods and results before comparing tools or applying the figures to another repository.

Local and Write-Safe

Fuse reads source, compiler state, git metadata, and its local .fuse/fuse.db index. Read, check, impact, refactor, and review operations do not write the working tree. fuse_workspace with action=apply is the one explicit tree-write path, and it is a dry run unless write=true.

Compiler-backed wiring analysis is .NET-only. Other languages receive syntax-level search and reduction.

Related Code-Intelligence Tools

Repository indexes, code graphs, and language-server tools already exist. CodeGraphContext provides a local multi-language graph, Serena exposes language-server-backed symbol tools, and Sourcegraph covers multi-repository search and code intelligence. Fuse concentrates on local .NET work through MSBuild and Roslyn: framework wiring, reduced scoped context, compiler-backed proposed-file checks, change impact, and covering-test selection. It can run alongside the index or search built into a coding client.

The peer comparison records a bounded, dated experiment and its sampling limits. It is not a general ranking of code-intelligence tools.

Start Here

  • Quickstart
  • Connect your coding agent
  • How Fuse works
  • Tool reference
  • Install options
  • Contributing

Apache 2.0. Copyright (c) 2026 Litenova Solutions. See LICENSE and NOTICE.

Related MCP Servers

View all in Finance & Fintech View all alternatives
  • R
    Ref Tools Ref Tools Mcp

    Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…

    πŸ’° Finance & Fintech0 views
    Compare vs Ref Tools Ref Tools Mcp β†’
  • Plugin logoPlugin

    Circulara Observe MCP plugin - meters your AI agents' token spend and carbon, free tier.

    πŸ’° Finance & Fintech0 views
    Compare vs Plugin β†’
  • A
    Agents

    Pay-per-call safety guards for AI agents: injection, tool-call, signing, secret, x402-trust.

    πŸ’° Finance & Fintech0 views
    Compare vs Agents β†’
  • Mcp logoMcp

    x402 micropayments for AI agents β€” credits-based, no wallets, no blockchain.

    πŸ’° Finance & Fintech1 views
    Compare vs Mcp β†’

Frequently Asked Questions about Fuse

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "fuse": { "command": "npx", "args": ["-y", "Fuse"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewFuse AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/fuse?style=directory)](https://allmcps.com/mcp/fuse)
HTML Embed
<a href="https://allmcps.com/mcp/fuse"><img src="https://allmcps.com/api/badge/fuse?style=directory" alt="Fuse on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’°Finance & Fintech
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
28Quality signal: Emerging Β· 28/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools12/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’° Finance & Fintech β†’Best MCP servers for Finance & Fintech β†’Alternatives to Fuse β†’Install in Claude DesktopInstall in CursorInstall in VS Code