Borrowing it
Nothing to install: this file belongs to NikiforovAll/hangfire-mcp-dotnet. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/NikiforovAll/hangfire-mcp-dotnet/main/CLAUDE.mdgit clone --depth 1 https://github.com/NikiforovAll/hangfire-mcp-dotnetWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/nikiforovall/hangfire-mcp-dotnet/claude-md)<a href="https://agentmods.dev/instructions/nikiforovall/hangfire-mcp-dotnet/claude-md"><img src="https://agentmods.dev/badge/instructions/nikiforovall/hangfire-mcp-dotnet/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/instructions/nikiforovall/hangfire-mcp-dotnet/claude-md"><img src="https://agentmods.dev/badge/instructions/nikiforovall/hangfire-mcp-dotnet/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00969 | $0.00969 |
| Opus 5 | $0.00485 | $0.00485 |
| Sonnet 5 | $0.00194 | $0.00194 |
| Haiku 4.5 | $0.00097 | $0.00097 |
Grade A, and why
hangfire-mcp-dotnet CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Project
Nall.Hangfire.Mcp — a remote MCP server that exposes Hangfire background jobs as MCP tools, in-process with the ASP.NET host that runs Hangfire. Streamable HTTP endpoint at /mcp. Targets net10.0. The companion Nall.Hangfire.Mcp.Generator (netstandard2.0 Roslyn source generator) scans AddOrUpdate / Enqueue / Schedule call sites at compile time to build a static job manifest.
Commands
Solution file: hangfire-mcp-dotnet.slnx.
dotnet restore hangfire-mcp-dotnet.slnx
dotnet build hangfire-mcp-dotnet.slnx -p:WarningLevel=0 /clp:ErrorsOnly
dotnet test hangfire-mcp-dotnet.slnx --no-build
Run a single test:
dotnet test tests/Nall.Hangfire.Mcp.Tests --filter "FullyQualifiedName~JobCatalogTests.MethodName"
Run the sample (Aspire AppHost orchestrates Hangfire + Web + dependencies):
aspire run # uses aspire.config.json -> samples/AppHost
# or directly:
dotnet run --project samples/Web
Build rule (from global instructions): always pass -p:WarningLevel=0 /clp:ErrorsOnly.
If Aspire is running, the Web resource locks DLLs and full-solution builds fail. For a full build: aspire stop → dotnet build ... → aspire start. (For changes to a single .NET resource, prefer aspire resource <name> rebuild instead of stopping the AppHost.)
Architecture
Pipeline from a Hangfire job to an MCP tool:
- Discovery (
JobDiscoverySources+JobScanner): two sources, configurable viaHangfireMcpOptions.Sources:RecurringStorage(default) — readsRecurringJobDto.JobfromJobStorage.StaticManifest— reads entries the Roslyn generator emitted intoJobManifestRegistry(inManifest/).All— union, deduped by(DeclaringType, MethodInfo).HangfireMcpOptions.Filterfilters recurring entries before scanning.
- Catalog (
JobCatalog): resolves each entry to aJobDescriptor(method, parameters, generated tool name likeRun_<jobId>). Built once as a singleton. - Schema (
JobInputSchema+ParameterNullability): generates JSON Schema perMethodInfo. Required vs optional respects C# defaults and nullable annotations (NRT for reference types,T?for value types). - MCP wiring (
HangfireMcpServiceCollectionExtensions.AddHangfireMcp→HangfireMcpEndpointRouteBuilderExtensions.MapHangfireMcp): registersJobCatalog+HangfireDynamicScheduleras singletons, then registers MCPListTools/CallToolhandlers onAddMcpServer().WithHttpTransport(stateless: true). - Invocation (
HangfireMcpHandlers+JobArgumentBinder): onCallTool, the binder converts the JSON arg dict into a typed object array viaMethodInfo.GetParameters(), applying defaults and nullability rules.HangfireDynamicSchedulerthen enqueues viaIBackgroundJobClientwith a dynamically-builtJobinstance (no shim interfaces, no attributes).
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 56 lines · 969 tokens per session scan A 14b805b7af46
hangfire-mcp-dotnet CLAUDE.md is an instructions file published in the GitHub repository NikiforovAll/hangfire-mcp-dotnet (1 stars, last pushed 4mo ago), licensed MIT. It adds 969 tokens to every session, about $0.0048 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
plan-forge dapr.instructions.md
Dapr patterns for .NET — building blocks, component config, sidecar architecture, multi-tenant isolation, workflows, state management, secrets.
plan-forge landing-zone.instructions.md
Azure Landing Zone baselines — identity, network, policy, management, security, tagging, subscription organization.
plan-forge database.instructions.md
Database patterns for .NET — Dapper/EF Core, parameterized queries, migration strategy.
plan-forge naming.instructions.md
Azure naming conventions — Microsoft CAF abbreviations, constraints, uniqueness, tagging.
plan-forge caching.instructions.md
Caching patterns for .NET — IDistributedCache, Redis, in-memory, cache-aside, TTL strategies.
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.