Merge pull request #299 from modelcontextprotocol/mahesh/fix-filesystem

Update case sensitivity handling for filesystem server
This commit is contained in:
Justin Spahr-Summers
2024-12-13 09:30:30 +00:00
committed by GitHub

View File

@@ -24,7 +24,7 @@ if (args.length === 0) {
// Normalize all paths consistently
function normalizePath(p: string): string {
return path.normalize(p).toLowerCase();
return path.normalize(p);
}
function expandHome(filepath: string): string {