-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "mcp-virtual-fs",
"version": "0.2.2",
"mcpName": "io.github.lu-zhengda/virtual-fs",
"description": "MCP server providing AI agents with persistent, PostgreSQL-backed virtual filesystem — session-isolated file operations, cross-session stores, glob/grep search, and Row Level Security",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lu-zhengda/mcp-virtual-fs.git"
},
"homepage": "https://github.com/lu-zhengda/mcp-virtual-fs#readme",
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"virtual-filesystem",
"virtual-fs",
"postgresql",
"ai-agent",
"ai-tools",
"llm",
"agent-memory",
"agent-tools",
"persistent-storage",
"filesystem",
"file-storage",
"session-isolation",
"claude",
"mcp-tools"
],
"main": "dist/index.js",
"bin": {
"mcp-virtual-fs": "dist/index.js"
},
"files": [
"dist",
"sql"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"pg": "^8.13.1",
"picomatch": "^4.0.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@testcontainers/postgresql": "^10.18.0",
"@types/node": "^22.12.0",
"@types/pg": "^8.11.11",
"@types/picomatch": "^3.0.1",
"eslint": "^9.39.2",
"testcontainers": "^10.18.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.54.0",
"vitest": "^3.0.5"
},
"engines": {
"node": ">=20"
}
}