(input)
| 70 | maxResultSizeChars: 100_000, |
| 71 | shouldDefer: true, |
| 72 | async description(input) { |
| 73 | const { url } = input as { url: string } |
| 74 | try { |
| 75 | const hostname = new URL(url).hostname |
| 76 | return `Claude wants to fetch content from ${hostname}` |
| 77 | } catch { |
| 78 | return `Claude wants to fetch content from this URL` |
| 79 | } |
| 80 | }, |
| 81 | userFacingName() { |
| 82 | return 'Fetch' |
| 83 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected