Skip to content

Commit c6866be

Browse files
chore: release (#28)
* chore: release * docs/capabilities.md via mcp-discovery --------- Co-authored-by: GitHub Action <[email protected]>
1 parent cd6af1b commit c6866be

File tree

8 files changed

+103
-73
lines changed

8 files changed

+103
-73
lines changed

.release-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.10"
2+
".": "0.2.0"
33
}

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/rust-mcp-stack/rust-mcp-filesystem/compare/v0.1.10...v0.2.0) (2025-07-05)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* upgrade to latest MCP protocol (2025-06-18) ([#29](https://github.com/rust-mcp-stack/rust-mcp-filesystem/issues/29))
9+
10+
### 🚀 Features
11+
12+
* Add list_directory_with_sizes MCP Tool for Directory Listing with File Sizes ([#27](https://github.com/rust-mcp-stack/rust-mcp-filesystem/issues/27)) ([15121c8](https://github.com/rust-mcp-stack/rust-mcp-filesystem/commit/15121c8d1605366ea5185f6a9e2ffd7036693d13))
13+
* Upgrade to latest MCP protocol (2025-06-18) ([#29](https://github.com/rust-mcp-stack/rust-mcp-filesystem/issues/29)) ([cd6af1b](https://github.com/rust-mcp-stack/rust-mcp-filesystem/commit/cd6af1bfc14dab4b2ba68b014be860c8e9668667))
14+
15+
16+
### 🐛 Bug Fixes
17+
18+
* Directory tree tool result ([#26](https://github.com/rust-mcp-stack/rust-mcp-filesystem/issues/26)) ([01f956e](https://github.com/rust-mcp-stack/rust-mcp-filesystem/commit/01f956efdde5fdd0e5fd14f30e4ebdac53d728f7))
19+
320
## [0.1.10](https://github.com/rust-mcp-stack/rust-mcp-filesystem/compare/v0.1.9...v0.1.10) (2025-06-18)
421

522

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-mcp-filesystem"
3-
version = "0.1.10"
3+
version = "0.2.0"
44
edition = "2021"
55
repository = "https://github.com/rust-mcp-stack/rust-mcp-filesystem"
66
authors = ["Ali Hashemi"]

docs/_coverpage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<!-- x-release-please-start-version -->
88

9-
# Rust MCP FileSystem (v0.1.10)
9+
# Rust MCP FileSystem (v0.2.0)
1010

1111
<!-- x-release-please-end -->
1212

docs/capabilities.md

Lines changed: 54 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Capabilities
22

33
<!-- mcp-discovery-render -->
4-
## rust-mcp-filesystem 0.1.10
5-
| 🟢 Tools (15) | <span style="opacity:0.6">🔴 Prompts</span> | <span style="opacity:0.6">🔴 Resources</span> | <span style="opacity:0.6">🔴 Logging</span> | <span style="opacity:0.6">🔴 Experimental</span> |
4+
## rust-mcp-filesystem 0.2.0
5+
| 🟢 Tools (16) | <span style="opacity:0.6">🔴 Prompts</span> | <span style="opacity:0.6">🔴 Resources</span> | <span style="opacity:0.6">🔴 Logging</span> | <span style="opacity:0.6">🔴 Experimental</span> |
66
| --- | --- | --- | --- | --- |
7-
## 🛠️ Tools (15)
7+
## 🛠️ Tools (16)
88

99
<table style="text-align: left;">
1010
<thead>
@@ -24,7 +24,7 @@
2424
<td>Create a new directory or ensure a directory exists. Can create multiple nested directories in one operation. If the directory already exists, this operation will succeed silently. Perfect for setting up directory structures for projects or ensuring required paths exist. Only works within allowed directories.</td>
2525
<td>
2626
<ul>
27-
<li style="white-space: nowrap;"> <code>path</code> : string<br /></li>
27+
<li> <code>path</code> : string<br /></li>
2828
</ul>
2929
</td>
3030
</tr>
@@ -33,10 +33,11 @@
3333
<td>
3434
<code><b>directory_tree</b></code>
3535
</td>
36-
<td>Get a recursive tree view of files and directories as a JSON structure. Each entry includes <code>name</code>, <code>type</code> (file/directory), and <code>children</code> for directories. Files have no children array, while directories always have a children array (which may be empty). The output is formatted with 2-space indentation for readability. Only works within allowed directories.</td>
36+
<td>Get a recursive tree view of files and directories as a JSON structure. Each entry includes <code>name</code>, <code>type</code> (file/directory), and <code>children</code> for directories. Files have no children array, while directories always have a children array (which may be empty). If the <code>max_depth</code> parameter is provided, the traversal will be limited to the specified depth. As a result, the returned directory structure may be incomplete or provide a skewed representation of the full directory tree, since deeper-level files and subdirectories beyond the specified depth will be excluded. The output is formatted with 2-space indentation for readability. Only works within allowed directories.</td>
3737
<td>
3838
<ul>
39-
<li style="white-space: nowrap;"> <code>path</code> : string<br /></li>
39+
<li> <code>max_depth</code> : number<br /></li>
40+
<li> <code>path</code> : string<br /></li>
4041
</ul>
4142
</td>
4243
</tr>
@@ -48,9 +49,9 @@
4849
<td>Make line-based edits to a text file. Each edit replaces exact line sequences with new content. Returns a git-style diff showing the changes made. Only works within allowed directories.</td>
4950
<td>
5051
<ul>
51-
<li style="white-space: nowrap;"> <code>dryRun</code> : boolean<br /></li>
52-
<li style="white-space: nowrap;"> <code>edits</code> : {newText : string, oldText : string} [ ]<br /></li>
53-
<li style="white-space: nowrap;"> <code>path</code> : string<br /></li>
52+
<li> <code>dryRun</code> : boolean<br /></li>
53+
<li> <code>edits</code> : {newText : string, oldText : string} [ ]<br /></li>
54+
<li> <code>path</code> : string<br /></li>
5455
</ul>
5556
</td>
5657
</tr>
@@ -62,7 +63,7 @@
6263
<td>Retrieve detailed metadata about a file or directory. Returns comprehensive information including size, creation time, last modified time, permissions, and type. This tool is perfect for understanding file characteristics without reading the actual content. Only works within allowed directories.</td>
6364
<td>
6465
<ul>
65-
<li style="white-space: nowrap;"> <code>path</code> : string<br /></li>
66+
<li> <code>path</code> : string<br /></li>
6667
</ul>
6768
</td>
6869
</tr>
@@ -85,127 +86,139 @@
8586
<td>Get a detailed listing of all files and directories in a specified path. Results clearly distinguish between files and directories with <code>FILE</code> and <code>DIR</code> prefixes. This tool is essential for understanding directory structure and finding specific files within a directory. Only works within allowed directories.</td>
8687
<td>
8788
<ul>
88-
<li style="white-space: nowrap;"> <code>path</code> : string<br /></li>
89+
<li> <code>path</code> : string<br /></li>
8990
</ul>
9091
</td>
9192
</tr>
9293
<tr>
9394
<td>7.</td>
95+
<td>
96+
<code><b>list_directory_with_sizes</b></code>
97+
</td>
98+
<td>Get a detailed listing of all files and directories in a specified path, including sizes. Results clearly distinguish between files and directories with <code>FILE</code> and <code>DIR</code> prefixes. This tool is useful for understanding directory structure and finding specific files within a directory. Only works within allowed directories.</td>
99+
<td>
100+
<ul>
101+
<li> <code>path</code> : string<br /></li>
102+
</ul>
103+
</td>
104+
</tr>
105+
<tr>
106+
<td>8.</td>
94107
<td>
95108
<code><b>move_file</b></code>
96109
</td>
97110
<td>Move or rename files and directories. Can move files between directories and rename them in a single operation. If the destination exists, the operation will fail. Works across different directories and can be used for simple renaming within the same directory. Both source and destination must be within allowed directories.</td>
98111
<td>
99112
<ul>
100-
<li style="white-space: nowrap;"> <code>destination</code> : string<br /></li>
101-
<li style="white-space: nowrap;"> <code>source</code> : string<br /></li>
113+
<li> <code>destination</code> : string<br /></li>
114+
<li> <code>source</code> : string<br /></li>
102115
</ul>
103116
</td>
104117
</tr>
105118
<tr>
106-
<td>8.</td>
119+
<td>9.</td>
107120
<td>
108121
<code><b>read_file</b></code>
109122
</td>
110123
<td>Read the complete contents of a file from the file system. Handles various text encodings and provides detailed error messages if the file cannot be read. Use this tool when you need to examine the contents of a single file. Only works within allowed directories.</td>
111124
<td>
112125
<ul>
113-
<li style="white-space: nowrap;"> <code>path</code> : string<br /></li>
126+
<li> <code>path</code> : string<br /></li>
114127
</ul>
115128
</td>
116129
</tr>
117130
<tr>
118-
<td>9.</td>
131+
<td>10.</td>
119132
<td>
120133
<code><b>read_multiple_files</b></code>
121134
</td>
122135
<td>Read the contents of multiple files simultaneously. This is more efficient than reading files one by one when you need to analyze or compare multiple files. Each file's content is returned with its path as a reference. Failed reads for individual files won't stop the entire operation. Only works within allowed directories.</td>
123136
<td>
124137
<ul>
125-
<li style="white-space: nowrap;"> <code>paths</code> : string [ ]<br /></li>
138+
<li> <code>paths</code> : string [ ]<br /></li>
126139
</ul>
127140
</td>
128141
</tr>
129142
<tr>
130-
<td>10.</td>
143+
<td>11.</td>
131144
<td>
132145
<code><b>search_files</b></code>
133146
</td>
134147
<td>Recursively search for files and directories matching a pattern. Searches through all subdirectories from the starting path. The search is case-insensitive and matches partial names. Returns full paths to all matching items. Great for finding files when you don't know their exact location. Only searches within allowed directories.</td>
135148
<td>
136149
<ul>
137-
<li style="white-space: nowrap;"> <code>excludePatterns</code> : string [ ]<br /></li>
138-
<li style="white-space: nowrap;"> <code>path</code> : string<br /></li>
139-
<li style="white-space: nowrap;"> <code>pattern</code> : string<br /></li>
150+
<li> <code>excludePatterns</code> : string [ ]<br /></li>
151+
<li> <code>path</code> : string<br /></li>
152+
<li> <code>pattern</code> : string<br /></li>
140153
</ul>
141154
</td>
142155
</tr>
143156
<tr>
144-
<td>11.</td>
157+
<td>12.</td>
145158
<td>
146159
<code><b>search_files_content</b></code>
147160
</td>
148161
<td>Searches for text or regex patterns in the content of files matching matching a GLOB pattern.Returns detailed matches with file path, line number, column number and a preview of matched text.By default, it performs a literal text search; if the <code>is_regex</code> parameter is set to true, it performs a regular expression (regex) search instead.Ideal for finding specific code, comments, or text when you don’t know their exact location.</td>
149162
<td>
150163
<ul>
151-
<li style="white-space: nowrap;"> <code>excludePatterns</code> : string [ ]<br /></li>
152-
<li style="white-space: nowrap;"> <code>is_regex</code> : boolean<br /></li>
153-
<li style="white-space: nowrap;"> <code>path</code> : string<br /></li>
154-
<li style="white-space: nowrap;"> <code>pattern</code> : string<br /></li>
155-
<li style="white-space: nowrap;"> <code>query</code> : string<br /></li>
164+
<li> <code>excludePatterns</code> : string [ ]<br /></li>
165+
<li> <code>is_regex</code> : boolean<br /></li>
166+
<li> <code>path</code> : string<br /></li>
167+
<li> <code>pattern</code> : string<br /></li>
168+
<li> <code>query</code> : string<br /></li>
156169
</ul>
157170
</td>
158171
</tr>
159172
<tr>
160-
<td>12.</td>
173+
<td>13.</td>
161174
<td>
162175
<code><b>unzip_file</b></code>
163176
</td>
164177
<td>Extracts the contents of a ZIP archive to a specified target directory.<br/>It takes a source ZIP file path and a target extraction directory.<br/>The tool decompresses all files and directories stored in the ZIP, recreating their structure in the target location.<br/>Both the source ZIP file and the target directory should reside within allowed directories.</td>
165178
<td>
166179
<ul>
167-
<li style="white-space: nowrap;"> <code>target_path</code> : string<br /></li>
168-
<li style="white-space: nowrap;"> <code>zip_file</code> : string<br /></li>
180+
<li> <code>target_path</code> : string<br /></li>
181+
<li> <code>zip_file</code> : string<br /></li>
169182
</ul>
170183
</td>
171184
</tr>
172185
<tr>
173-
<td>13.</td>
186+
<td>14.</td>
174187
<td>
175188
<code><b>write_file</b></code>
176189
</td>
177190
<td>Create a new file or completely overwrite an existing file with new content. Use with caution as it will overwrite existing files without warning. Handles text content with proper encoding. Only works within allowed directories.</td>
178191
<td>
179192
<ul>
180-
<li style="white-space: nowrap;"> <code>content</code> : string<br /></li>
181-
<li style="white-space: nowrap;"> <code>path</code> : string<br /></li>
193+
<li> <code>content</code> : string<br /></li>
194+
<li> <code>path</code> : string<br /></li>
182195
</ul>
183196
</td>
184197
</tr>
185198
<tr>
186-
<td>14.</td>
199+
<td>15.</td>
187200
<td>
188201
<code><b>zip_directory</b></code>
189202
</td>
190203
<td>Creates a ZIP archive by compressing a directory , including files and subdirectories matching a specified glob pattern.<br/>It takes a path to the folder and a glob pattern to identify files to compress and a target path for the resulting ZIP file.<br/>Both the source directory and the target ZIP file should reside within allowed directories.</td>
191204
<td>
192205
<ul>
193-
<li style="white-space: nowrap;"> <code>input_directory</code> : string<br /></li>
194-
<li style="white-space: nowrap;"> <code>pattern</code> : string<br /></li>
195-
<li style="white-space: nowrap;"> <code>target_zip_file</code> : string<br /></li>
206+
<li> <code>input_directory</code> : string<br /></li>
207+
<li> <code>pattern</code> : string<br /></li>
208+
<li> <code>target_zip_file</code> : string<br /></li>
196209
</ul>
197210
</td>
198211
</tr>
199212
<tr>
200-
<td>15.</td>
213+
<td>16.</td>
201214
<td>
202215
<code><b>zip_files</b></code>
203216
</td>
204217
<td>Creates a ZIP archive by compressing files. It takes a list of files to compress and a target path for the resulting ZIP file. Both the source files and the target ZIP file should reside within allowed directories.</td>
205218
<td>
206219
<ul>
207-
<li style="white-space: nowrap;"> <code>input_files</code> : string [ ]<br /></li>
208-
<li style="white-space: nowrap;"> <code>target_zip_file</code> : string<br /></li>
220+
<li> <code>input_files</code> : string [ ]<br /></li>
221+
<li> <code>target_zip_file</code> : string<br /></li>
209222
</ul>
210223
</td>
211224
</tr>
@@ -215,5 +228,5 @@
215228

216229

217230

218-
<sub>◾ generated by [mcp-discovery](https://github.com/rust-mcp-stack/mcp-discovery)</sub>
231+
<sup>◾ generated by [mcp-discovery](https://github.com/rust-mcp-stack/mcp-discovery)</sup>
219232
<!-- mcp-discovery-render-end -->

0 commit comments

Comments
 (0)