-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
57 lines (57 loc) · 2.01 KB
/
server.json
File metadata and controls
57 lines (57 loc) · 2.01 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.rclone-ui/rclone",
"description": "MCP server for the Rclone RC API, with selectable toolsets.",
"repository": {
"url": "https://github.com/rclone-ui/rclone-mcp",
"source": "github"
},
"version": "1.0.0",
"packages": [
{
"registryType": "npm",
"identifier": "rclone-mcp",
"version": "1.0.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "RCLONE_URL",
"description": "Rclone RC daemon URL",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "RCLONE_USER",
"description": "HTTP Basic Auth username",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "RCLONE_PASS",
"description": "HTTP Basic Auth password",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "RCLONE_TOOLSETS",
"description": "Comma-separated list of toolsets to enable (default, all, or specific: core, config, operations, sync, jobs, vfs, mount, etc.)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "RCLONE_READ_ONLY",
"description": "Set to 1 to disable write tools",
"isRequired": false,
"format": "string",
"isSecret": false
}
]
}
]
}