-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
49 lines (49 loc) · 1.58 KB
/
Copy pathserver.json
File metadata and controls
49 lines (49 loc) · 1.58 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.lu-zhengda/virtual-fs",
"title": "Virtual Filesystem",
"description": "PostgreSQL-backed virtual filesystem for agents: session isolation, shared stores, POSIX ops, RLS.",
"websiteUrl": "https://github.com/lu-zhengda/mcp-virtual-fs#readme",
"repository": {
"url": "https://github.com/lu-zhengda/mcp-virtual-fs",
"source": "github"
},
"version": "0.2.2",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "mcp-virtual-fs",
"version": "0.2.2",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "DATABASE_URL",
"description": "PostgreSQL connection string (e.g. postgresql://user:pass@host:5432/dbname)",
"isRequired": true,
"isSecret": true
},
{
"name": "VFS_AUTO_INIT",
"description": "Auto-create database tables on startup (set to 'true' for first run)",
"isRequired": false,
"isSecret": false
},
{
"name": "VFS_SESSION_ID",
"description": "Deterministic session ID for resumable sessions across restarts",
"isRequired": false,
"isSecret": false
},
{
"name": "VFS_ENABLE_RLS",
"description": "Enable PostgreSQL Row Level Security for database-enforced session isolation",
"isRequired": false,
"isSecret": false
}
]
}
]
}