(ctx: Ctx, params: CallToolRequestParams)
| 295 | seen_arguments: dict[str, Any] = {} |
| 296 | |
| 297 | async def call_tool(ctx: Ctx, params: CallToolRequestParams) -> dict[str, Any]: |
| 298 | seen_arguments.update(params.arguments or {}) |
| 299 | return {"content": [], "isError": False} |
| 300 | |
| 301 | async def inject_arg(ctx: Ctx, call_next: CallNext) -> Any: |
| 302 | assert ctx.params is not None |
nothing calls this directly
no outgoing calls
no test coverage detected