docfs
Version:
MCP server for accessing local file system content with intelligent search and listing tools
9 lines • 328 B
JavaScript
import { main } from './index.js';
// Always run the server when invoked via the CLI entry
main().catch((error) => {
const message = error instanceof Error ? error.message : String(error);
console.error(`[FATAL] Unexpected error: ${message}`);
process.exit(1);
});
//# sourceMappingURL=cli.js.map