Skip to content

Commit

Permalink
Merge pull request #299 from modelcontextprotocol/mahesh/fix-filesystem
Browse files Browse the repository at this point in the history
Update case sensitivity handling for filesystem server
  • Loading branch information
jspahrsummers authored Dec 13, 2024
2 parents 46b1bfc + 1c30f54 commit 305d799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filesystem/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 305d799

Please sign in to comment.