MCPcopy Create free account
hub / github.com/codeaashu/claude-code / description

Function description

src/tools/WebFetchTool/WebFetchTool.ts:72–80  ·  view source on GitHub ↗
(input)

Source from the content-addressed store, hash-verified

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 },

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected