(ctx: Context)
| 135 | |
| 136 | @mcp.tool() |
| 137 | async def mill(ctx: Context) -> str: |
| 138 | await ctx.report_progress(1, 3) |
| 139 | await ctx.info("milling done") # pyright: ignore[reportDeprecated] |
| 140 | return "milled" |
| 141 | |
| 142 | async def collect(message: IncomingMessage) -> None: |
| 143 | received.append(message) |
nothing calls this directly
no test coverage detected