mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-04-21 21:35:15 +02:00
Merge pull request #589 from g-votte/update-filesystem-readme
Fix misleading edit_file functionality docs in server-filesystem README
This commit is contained in:
@@ -41,22 +41,16 @@ Node.js server implementing Model Context Protocol (MCP) for filesystem operatio
|
|||||||
- Features:
|
- Features:
|
||||||
- Line-based and multi-line content matching
|
- Line-based and multi-line content matching
|
||||||
- Whitespace normalization with indentation preservation
|
- Whitespace normalization with indentation preservation
|
||||||
- Fuzzy matching with confidence scoring
|
|
||||||
- Multiple simultaneous edits with correct positioning
|
- Multiple simultaneous edits with correct positioning
|
||||||
- Indentation style detection and preservation
|
- Indentation style detection and preservation
|
||||||
- Git-style diff output with context
|
- Git-style diff output with context
|
||||||
- Preview changes with dry run mode
|
- Preview changes with dry run mode
|
||||||
- Failed match debugging with confidence scores
|
|
||||||
- Inputs:
|
- Inputs:
|
||||||
- `path` (string): File to edit
|
- `path` (string): File to edit
|
||||||
- `edits` (array): List of edit operations
|
- `edits` (array): List of edit operations
|
||||||
- `oldText` (string): Text to search for (can be substring)
|
- `oldText` (string): Text to search for (can be substring)
|
||||||
- `newText` (string): Text to replace with
|
- `newText` (string): Text to replace with
|
||||||
- `dryRun` (boolean): Preview changes without applying (default: false)
|
- `dryRun` (boolean): Preview changes without applying (default: false)
|
||||||
- `options` (object): Optional formatting settings
|
|
||||||
- `preserveIndentation` (boolean): Keep existing indentation (default: true)
|
|
||||||
- `normalizeWhitespace` (boolean): Normalize spaces while preserving structure (default: true)
|
|
||||||
- `partialMatch` (boolean): Enable fuzzy matching (default: true)
|
|
||||||
- Returns detailed diff and match information for dry runs, otherwise applies changes
|
- Returns detailed diff and match information for dry runs, otherwise applies changes
|
||||||
- Best Practice: Always use dryRun first to preview changes before applying them
|
- Best Practice: Always use dryRun first to preview changes before applying them
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user