Borrowing it
Nothing to install: this file belongs to lewing/helix.mcp. 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/lewing/helix.mcp/main/.copilot/skills/mcp-progress-notifications/SKILL.mdgit clone --depth 1 https://github.com/lewing/helix.mcpWrote 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/skills/lewing/helix.mcp/mcp-progress-notifications)<a href="https://agentmods.dev/skills/lewing/helix.mcp/mcp-progress-notifications"><img src="https://agentmods.dev/badge/skills/lewing/helix.mcp/mcp-progress-notifications.svg" alt="Measured on agentmods" 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.00000 | $0.01214 |
| Opus 5 | $0.00000 | $0.00607 |
| Sonnet 5 | $0.00000 | $0.00243 |
| Haiku 4.5 | $0.00000 | $0.00121 |
Grade A, and why
mcp-progress-notifications 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 8d 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 — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill: Emitting MCP Progress Notifications (ModelContextProtocol C# SDK ≥ 1.3.0)
When to apply
A [McpServerTool] method routinely takes more than ~1 second
(downloads, multi-step API scans, multi-file processing). The MCP client
needs interim progress so its UI doesn't appear hung.
The pattern (server side, C#)
[McpServerTool(Name = "long_running_thing")]
public async Task<MyResult> Do(
string someArg,
int batchSize = 100,
// Auto-injected by the SDK. Parameter is *omitted from the tool's
// JSON schema* — clients never see it.
IProgress<ProgressNotificationValue>? progress = null)
{
int total = ComputeTotal();
int step = Math.Max(1, total / 10); // ~10 emits over the run
progress?.Report(new ProgressNotificationValue
{
Progress = 0, Total = total,
Message = $"Starting {total} item(s)",
});
int done = 0;
foreach (var item in items)
{
await ProcessAsync(item);
done++;
if (done % step == 0 || done == total)
{
progress?.Report(new ProgressNotificationValue
{
Progress = done, Total = total,
Message = $"Processed {done} of {total}",
});
}
}
return result;
}
Key facts about the SDK behavior
- The SDK auto-injects
IProgress<ProgressNotificationValue>for any parameter of that type. You don't register or wire anything. - If the client included
_meta.progressTokenintools/call, everyReportbecomes anotifications/progressJSON-RPC message tagged with that token. - If the client did NOT supply a progress token, the injected sink
is a no-op.
progress?.Report(...)is always safe; never branch on "did the client want progress?" — just always call it. ProgressNotificationValuehas init-onlyfloat Progress,float? Total,string? Message. Use object-initializer syntax.- The escape hatch
McpSession.NotifyProgressAsync(ProgressToken, …)exists for code that has aRequestContextbut isn't inside a tool method's parameter frame. Don't reach for it from a tool method.
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.
- 8d ago First seen · 132 lines · 0 tokens per session scan A 004d01ba0725
mcp-progress-notifications is a skill published in the GitHub repository lewing/helix.mcp (4 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,214 tokens. 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 skills, from other repositories
csharp-dotnet
Use when writing, reviewing, testing, or shipping C# / .NET code — ASP.NET Core APIs (minimal APIs vs controllers), EF Core data access, async correctness, solution layout in .cs/.csproj/.sln. NOT a Java/Spring backend (that is spring-boot), NOT a Node/TypeScript backend (that is nestjs), NOT framework-neutral REST…
argot-suggest-rules
Turn a convention argot has already discovered into a scripted custom rule. Runs argot conventions, surfaces the repo's mined placement conventions (where a kind of code lives — "validation in schema files", "DB access only in migrations", "business logic in the service layer, not views") and internal-API vocabulary…
codegen
Use for .NET code generation work with Roslyn, Microsoft.OpenApi, Razor templates, DTO/manager/controller generation, REST API generation, C# HttpClient generation, Angular/Axios TypeScript request clients, generated formatting, and deterministic output.
wikipedia
Search and read Wikipedia via x wkp — MediaWiki API, no API key, zero install; query, extract, suggest, and DDG route in one module. Load for wiki, wikipedia, encyclopedia lookup, article summary.
cve
Look up CVE records via x cve — cached, zero-API-key, daily xz TSV. Load for cve, vulnerability id, kev, epss, nvd, cvelist, or security advisory.
voiden
Create and edit Voiden .void files for API testing. Covers the .void file format and all enabled extension block types.