@j0hanz/filesystem-mcp 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -2
- package/dist/assets/logo.svg +19 -19
- package/dist/index.js +0 -0
- package/package.json +94 -94
package/README.md
CHANGED
|
@@ -219,8 +219,11 @@ Use the Docker image with any MCP client that supports stdio transport:
|
|
|
219
219
|
"filesystem": {
|
|
220
220
|
"command": "docker",
|
|
221
221
|
"args": [
|
|
222
|
-
"run",
|
|
223
|
-
"-
|
|
222
|
+
"run",
|
|
223
|
+
"-i",
|
|
224
|
+
"--rm",
|
|
225
|
+
"-v",
|
|
226
|
+
"/path/to/project:/projects/workspace:ro",
|
|
224
227
|
"ghcr.io/j0hanz/filesystem-mcp:latest",
|
|
225
228
|
"/projects/workspace"
|
|
226
229
|
]
|
package/dist/assets/logo.svg
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
-
<style>
|
|
3
|
-
path {
|
|
4
|
-
fill: none;
|
|
5
|
-
stroke: #000000;
|
|
6
|
-
stroke-width: 1.3;
|
|
7
|
-
stroke-linecap: round;
|
|
8
|
-
stroke-linejoin: round
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
@media (prefers-color-scheme: dark) {
|
|
12
|
-
path {
|
|
13
|
-
stroke: #FFFFFF
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
</style>
|
|
17
|
-
<path d="M3 8H21V20H3Z" />
|
|
18
|
-
<path d="M3 8L5 4H11L13 8" />
|
|
19
|
-
<path d="M3 12H21" />
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
2
|
+
<style>
|
|
3
|
+
path {
|
|
4
|
+
fill: none;
|
|
5
|
+
stroke: #000000;
|
|
6
|
+
stroke-width: 1.3;
|
|
7
|
+
stroke-linecap: round;
|
|
8
|
+
stroke-linejoin: round
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@media (prefers-color-scheme: dark) {
|
|
12
|
+
path {
|
|
13
|
+
stroke: #FFFFFF
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
</style>
|
|
17
|
+
<path d="M3 8H21V20H3Z" />
|
|
18
|
+
<path d="M3 8L5 4H11L13 8" />
|
|
19
|
+
<path d="M3 12H21" />
|
|
20
20
|
</svg>
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@j0hanz/filesystem-mcp",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"mcpName": "io.github.j0hanz/filesystem-mcp",
|
|
5
|
-
"description": "MCP Server that enables LLMs to interact with the local filesystem.",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"main": "dist/index.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"default": "./dist/index.js"
|
|
13
|
-
},
|
|
14
|
-
"./package.json": "./package.json"
|
|
15
|
-
},
|
|
16
|
-
"bin": {
|
|
17
|
-
"filesystem-mcp": "dist/index.js"
|
|
18
|
-
},
|
|
19
|
-
"files": [
|
|
20
|
-
"dist",
|
|
21
|
-
"README.md"
|
|
22
|
-
],
|
|
23
|
-
"scripts": {
|
|
24
|
-
"clean": "node scripts/tasks.mjs clean",
|
|
25
|
-
"validate:instructions": "node scripts/tasks.mjs validate:instructions",
|
|
26
|
-
"build": "node scripts/tasks.mjs build",
|
|
27
|
-
"copy:assets": "node scripts/tasks.mjs copy:assets",
|
|
28
|
-
"prepare": "npm run build",
|
|
29
|
-
"dev": "tsc --watch --preserveWatchOutput",
|
|
30
|
-
"dev:run": "node --env-file=.env --watch dist/index.js",
|
|
31
|
-
"start": "node dist/index.js",
|
|
32
|
-
"format": "prettier --write .",
|
|
33
|
-
"type-check": "node scripts/tasks.mjs type-check",
|
|
34
|
-
"type-check:diagnostics": "tsc --noEmit --extendedDiagnostics",
|
|
35
|
-
"type-check:trace": "node -e \"require('fs').rmSync('.ts-trace',{recursive:true,force:true})\" && tsc --noEmit --generateTrace .ts-trace",
|
|
36
|
-
"lint": "eslint .",
|
|
37
|
-
"lint:fix": "eslint . --fix",
|
|
38
|
-
"test": "node scripts/tasks.mjs test",
|
|
39
|
-
"test:fast": "node --test --import tsx/esm src/__tests__/**/*.test.ts",
|
|
40
|
-
"test:coverage": "node scripts/tasks.mjs test --coverage",
|
|
41
|
-
"knip": "knip",
|
|
42
|
-
"knip:fix": "knip --fix",
|
|
43
|
-
"inspector": "npm run build && npx -y @modelcontextprotocol/inspector node dist/index.js ${workspaceFolder}",
|
|
44
|
-
"prepublishOnly": "npm run lint && npm run type-check && npm run build"
|
|
45
|
-
},
|
|
46
|
-
"keywords": [
|
|
47
|
-
"mcp",
|
|
48
|
-
"model-context-protocol",
|
|
49
|
-
"filesystem",
|
|
50
|
-
"scanner",
|
|
51
|
-
"search",
|
|
52
|
-
"analysis",
|
|
53
|
-
"exploration",
|
|
54
|
-
"manipulation",
|
|
55
|
-
"server"
|
|
56
|
-
],
|
|
57
|
-
"author": "j0hanz",
|
|
58
|
-
"license": "MIT",
|
|
59
|
-
"repository": {
|
|
60
|
-
"type": "git",
|
|
61
|
-
"url": "https://github.com/j0hanz/filesystem-mcp.git"
|
|
62
|
-
},
|
|
63
|
-
"homepage": "https://github.com/j0hanz/filesystem-mcp#readme",
|
|
64
|
-
"dependencies": {
|
|
65
|
-
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
66
|
-
"commander": "^14.0.3",
|
|
67
|
-
"diff": "^8.0.3",
|
|
68
|
-
"ignore": "^7.0.5",
|
|
69
|
-
"re2": "^1.23.2",
|
|
70
|
-
"safe-regex2": "^5.0.0",
|
|
71
|
-
"zod": "^4.3.6"
|
|
72
|
-
},
|
|
73
|
-
"devDependencies": {
|
|
74
|
-
"@eslint/js": "^9.39.2",
|
|
75
|
-
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
76
|
-
"@types/diff": "^7.0.2",
|
|
77
|
-
"@types/node": "^24",
|
|
78
|
-
"eslint": "^9.39.2",
|
|
79
|
-
"eslint-config-prettier": "^10.1.8",
|
|
80
|
-
"eslint-plugin-de-morgan": "^2.0.0",
|
|
81
|
-
"eslint-plugin-depend": "^1.4.0",
|
|
82
|
-
"eslint-plugin-sonarjs": "^3.0.6",
|
|
83
|
-
"eslint-plugin-unused-imports": "^4.3.0",
|
|
84
|
-
"jscpd": "^4.0.8",
|
|
85
|
-
"knip": "^5.83.1",
|
|
86
|
-
"prettier": "^3.8.1",
|
|
87
|
-
"tsx": "^4.21.0",
|
|
88
|
-
"typescript": "^5.9.3",
|
|
89
|
-
"typescript-eslint": "^8.54.0"
|
|
90
|
-
},
|
|
91
|
-
"engines": {
|
|
92
|
-
"node": ">=24"
|
|
93
|
-
}
|
|
94
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@j0hanz/filesystem-mcp",
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"mcpName": "io.github.j0hanz/filesystem-mcp",
|
|
5
|
+
"description": "MCP Server that enables LLMs to interact with the local filesystem.",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": "./package.json"
|
|
15
|
+
},
|
|
16
|
+
"bin": {
|
|
17
|
+
"filesystem-mcp": "dist/index.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"clean": "node scripts/tasks.mjs clean",
|
|
25
|
+
"validate:instructions": "node scripts/tasks.mjs validate:instructions",
|
|
26
|
+
"build": "node scripts/tasks.mjs build",
|
|
27
|
+
"copy:assets": "node scripts/tasks.mjs copy:assets",
|
|
28
|
+
"prepare": "npm run build",
|
|
29
|
+
"dev": "tsc --watch --preserveWatchOutput",
|
|
30
|
+
"dev:run": "node --env-file=.env --watch dist/index.js",
|
|
31
|
+
"start": "node dist/index.js",
|
|
32
|
+
"format": "prettier --write .",
|
|
33
|
+
"type-check": "node scripts/tasks.mjs type-check",
|
|
34
|
+
"type-check:diagnostics": "tsc --noEmit --extendedDiagnostics",
|
|
35
|
+
"type-check:trace": "node -e \"require('fs').rmSync('.ts-trace',{recursive:true,force:true})\" && tsc --noEmit --generateTrace .ts-trace",
|
|
36
|
+
"lint": "eslint .",
|
|
37
|
+
"lint:fix": "eslint . --fix",
|
|
38
|
+
"test": "node scripts/tasks.mjs test",
|
|
39
|
+
"test:fast": "node --test --import tsx/esm src/__tests__/**/*.test.ts",
|
|
40
|
+
"test:coverage": "node scripts/tasks.mjs test --coverage",
|
|
41
|
+
"knip": "knip",
|
|
42
|
+
"knip:fix": "knip --fix",
|
|
43
|
+
"inspector": "npm run build && npx -y @modelcontextprotocol/inspector node dist/index.js ${workspaceFolder}",
|
|
44
|
+
"prepublishOnly": "npm run lint && npm run type-check && npm run build"
|
|
45
|
+
},
|
|
46
|
+
"keywords": [
|
|
47
|
+
"mcp",
|
|
48
|
+
"model-context-protocol",
|
|
49
|
+
"filesystem",
|
|
50
|
+
"scanner",
|
|
51
|
+
"search",
|
|
52
|
+
"analysis",
|
|
53
|
+
"exploration",
|
|
54
|
+
"manipulation",
|
|
55
|
+
"server"
|
|
56
|
+
],
|
|
57
|
+
"author": "j0hanz",
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"repository": {
|
|
60
|
+
"type": "git",
|
|
61
|
+
"url": "https://github.com/j0hanz/filesystem-mcp.git"
|
|
62
|
+
},
|
|
63
|
+
"homepage": "https://github.com/j0hanz/filesystem-mcp#readme",
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
66
|
+
"commander": "^14.0.3",
|
|
67
|
+
"diff": "^8.0.3",
|
|
68
|
+
"ignore": "^7.0.5",
|
|
69
|
+
"re2": "^1.23.2",
|
|
70
|
+
"safe-regex2": "^5.0.0",
|
|
71
|
+
"zod": "^4.3.6"
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@eslint/js": "^9.39.2",
|
|
75
|
+
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
76
|
+
"@types/diff": "^7.0.2",
|
|
77
|
+
"@types/node": "^24",
|
|
78
|
+
"eslint": "^9.39.2",
|
|
79
|
+
"eslint-config-prettier": "^10.1.8",
|
|
80
|
+
"eslint-plugin-de-morgan": "^2.0.0",
|
|
81
|
+
"eslint-plugin-depend": "^1.4.0",
|
|
82
|
+
"eslint-plugin-sonarjs": "^3.0.6",
|
|
83
|
+
"eslint-plugin-unused-imports": "^4.3.0",
|
|
84
|
+
"jscpd": "^4.0.8",
|
|
85
|
+
"knip": "^5.83.1",
|
|
86
|
+
"prettier": "^3.8.1",
|
|
87
|
+
"tsx": "^4.21.0",
|
|
88
|
+
"typescript": "^5.9.3",
|
|
89
|
+
"typescript-eslint": "^8.54.0"
|
|
90
|
+
},
|
|
91
|
+
"engines": {
|
|
92
|
+
"node": ">=24"
|
|
93
|
+
}
|
|
94
|
+
}
|