MCPcopy Index your code
hub / github.com/codeaashu/claude-code / list

Function list

web/lib/api/files.ts:226–229  ·  view source on GitHub ↗
(path)

Source from the content-addressed store, hash-verified

224
225export const fileAPI: FileAPI = {
226 async list(path) {
227 const text = await mcpClient.callTool("list_directory", { path });
228 return parseDirectoryListing(path, text);
229 },
230
231 async read(path, opts) {
232 const args: Record<string, unknown> = { path };

Callers

nothing calls this directly

Calls 2

parseDirectoryListingFunction · 0.85
callToolMethod · 0.80

Tested by

no test coverage detected