MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / mkdir

Function mkdir

src/utils/command.ts:254–256  ·  view source on GitHub ↗
(path: string, options?: { recursive?: boolean })

Source from the content-addressed store, hash-verified

252
253const defaultFileSystemExecutor: FileSystemExecutor = {
254 async mkdir(path: string, options?: { recursive?: boolean }): Promise<void> {
255 await fsPromises.mkdir(path, options);
256 },
257
258 readFile(path: string, encoding: BufferEncoding = 'utf8'): Promise<string> {
259 return fsPromises.readFile(path, encoding);

Callers 5

installProjectSkillsFunction · 0.85
runSuiteFunction · 0.85
writeMcpConfigFunction · 0.85
mainFunction · 0.85

Calls 1

mkdirMethod · 0.80

Tested by

no test coverage detected