Nall.Hangfire.Mcp 0.2.1

dotnet add package Nall.Hangfire.Mcp --version 0.2.1
                    
NuGet\Install-Package Nall.Hangfire.Mcp -Version 0.2.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Nall.Hangfire.Mcp" Version="0.2.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Nall.Hangfire.Mcp" Version="0.2.1" />
                    
Directory.Packages.props
<PackageReference Include="Nall.Hangfire.Mcp" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Nall.Hangfire.Mcp --version 0.2.1
                    
#r "nuget: Nall.Hangfire.Mcp, 0.2.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Nall.Hangfire.Mcp@0.2.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Nall.Hangfire.Mcp&version=0.2.1
                    
Install as a Cake Addin
#tool nuget:?package=Nall.Hangfire.Mcp&version=0.2.1
                    
Install as a Cake Tool

Nall.Hangfire.Mcp

NuGet NuGet Downloads Build License: MIT

Remote MCP server for Hangfire — exposes background jobs as MCP tools, in-process with the Hangfire server.

📖 Documentation: https://nikiforovall.github.io/hangfire-mcp-dotnet/

Design

  • In-process. Runs inside the ASP.NET host that runs Hangfire. No out-of-process assembly loading.
  • Remote. Streamable HTTP endpoint at /mcp. Any MCP client (VS Code, Claude Desktop, custom agents) can connect.
  • Zero ceremony. No attributes, no shim interfaces — discovery reads what you already register with Hangfire.
  • Schema from MethodInfo. JSON Schema generated per method. Required vs. optional respects both C# defaults and nullable annotations (int?, string?).

Getting started

Install:

dotnet add package Nall.Hangfire.Mcp

Minimum host setup — three lines on top of an existing Hangfire app:

builder.Services.AddHangfireMcp();   // registers MCP server + JobCatalog
var app = builder.Build();
app.MapHangfireMcp("/mcp");          // streamable HTTP endpoint

Full minimal example:

using Hangfire;
using Nall.Hangfire.Mcp;

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddHangfire(cfg => cfg.UsePostgreSqlStorage(...));
builder.Services.AddHangfireServer();
builder.Services.AddHangfireMcp();

var app = builder.Build();
app.MapHangfireDashboard();
app.MapHangfireMcp("/mcp");

app.Services.GetRequiredService<IRecurringJobManager>()
    .AddOrUpdate<IReportJob>("report.daily", j => j.GenerateAsync(2026, "pdf", null), Cron.Daily);

app.Run();

Every recurring job is now an MCP tool: Run_report.daily with a JSON Schema derived from GenerateAsync's parameters.

VS Code MCP config:

{
  "servers": {
    "hangfire": { "url": "https://your-host/mcp" }
  }
}

Discovery sources

Source What it sees When to use
RecurringStorage (default) RecurringJobDto.Job from Hangfire storage. Every recurring job is a tool.
StaticManifest Compile-time scan of AddOrUpdate / Enqueue / Schedule call sites via the optional Nall.Hangfire.Mcp.Generator source generator. Expose helper methods you only ever one-shot enqueue, or jobs not yet registered as recurring.
All Union of both, deduped by (DeclaringType, MethodInfo). Most apps.

Configure via AddHangfireMcp:

builder.Services.AddHangfireMcp(o =>
{
    o.Sources = JobDiscoverySources.All;          // default: RecurringStorage
    o.Filter  = rj => rj.Id.StartsWith("public."); // optional storage filter
});

To populate the manifest, install the generator package in each project that contains Hangfire registration calls:

dotnet add package Nall.Hangfire.Mcp.Generator

Built-in maintenance tools

Every MCP server hosted by AddHangfireMcp() also exposes a fixed set of hangfire_* tools for inspecting and managing jobs alongside the dynamic Run_* tools:

Tool Purpose
hangfire_get_statistics Global counters: Enqueued/Failed/Processing/Scheduled/Succeeded/Deleted/Recurring/Retries/Servers.
hangfire_list_jobs Page jobs by state with optional filter. Use this to discover ids before bulk ops.
hangfire_get_job Full details + state history for one id.
hangfire_delete_job Move one job to Deleted.
hangfire_requeue_job Requeue one job (covers retry of Failed).
hangfire_delete_jobs Bulk delete by ids or filter (exactly one).
hangfire_requeue_jobs Bulk requeue by ids or filter.

Filter shape (used by list_jobs, delete_jobs, requeue_jobs):

{
  "state": "Failed",
  "queue": "default",
  "jobType": "ReportJob",
  "method": "Generate",
  "messageContains": "timeout",
  "exceptionContains": "SqlException"
}

jobType and method are case-insensitive substring matches. messageContains / exceptionContains are most useful for Failed.

Parameter binding

For each tool call:

  • C# default → used when the argument is omitted.
  • Nullable type (T? value or annotated reference) and no default → bound to null when omitted.
  • Otherwise required; missing argument returns an MCP error.

Authentication

MapHangfireMcp returns IEndpointConventionBuilder — the library is auth-agnostic. Chain any ASP.NET Core auth scheme:

app.MapHangfireMcp("/mcp")
   .RequireAuthorization(p => p.RequireAuthenticatedUser()
       .AddAuthenticationSchemes(McpAuthenticationDefaults.AuthenticationScheme));
  • OAuth 2.1 / OIDCsamples/Web wires Keycloak + JwtBearer + AddMcp() from ModelContextProtocol.AspNetCore.Authentication to advertise RFC 9728 protected-resource-metadata. End-to-end flow, standards, and gotchas: docs/authentication.md.
  • API keys / custom schemes — nothing MCP-specific required. Implement an AuthenticationHandler<T>, register it, and pass its scheme to RequireAuthorization above. The Run_* and hangfire_* tools work the same regardless of how the principal got there.

Sample

samples/Web exercises overloads, complex objects, enums, collections, defaults, nullable optionals, and manifest-only one-shot jobs. GET /jobs lists the discovered catalog.

License

MIT

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.2.1 121 5/3/2026
0.2.0 101 5/2/2026
0.1.0 101 5/1/2026