(path)
| 224 | |
| 225 | export 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 }; |
nothing calls this directly
no test coverage detected