You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/filesystem/README.md
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -204,6 +204,37 @@ The mapping for filesystem tools is:
204
204
205
205
> Note: `idempotentHint` and `destructiveHint` are meaningful only when `readOnlyHint` is `false`, as defined by the MCP spec.
206
206
207
+
## Usage with Kiro
208
+
209
+
For quick installation, click the button below:
210
+
211
+
[](https://kiro.dev/launch/mcp/add?name=filesystem&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40modelcontextprotocol%2Fserver-filesystem%22%2C%22%2Fpath%2Fto%2Fallowed%2Fdir%22%5D%7D)
212
+
213
+
### Manual Configuration
214
+
215
+
1. From the Kiro panel, select the **MCP Servers** tab, or open the file `.kiro/settings/mcp.json` in your project.
216
+
2. Add the following configuration:
217
+
218
+
```json
219
+
{
220
+
"mcpServers": {
221
+
"filesystem": {
222
+
"command": "npx",
223
+
"args": [
224
+
"-y",
225
+
"@modelcontextprotocol/server-filesystem",
226
+
"/Users/username/Desktop",
227
+
"/path/to/other/allowed/dir"
228
+
]
229
+
}
230
+
}
231
+
}
232
+
```
233
+
234
+
3. Replace the paths with directories you want the server to access.
235
+
236
+
For more details, see the Kiro MCP documentation for [IDE](https://kiro.dev/docs/ide/mcp/configuration/) or [CLI](https://kiro.dev/docs/cli/mcp/configuration/).
0 commit comments