Skip to content

Commit f4bf7b2

Browse files
authored
Update Desktop Commander configuration (#105)
* Add configuration interface for Desktop Commander - Add filesystem paths configuration (array input for allowed directories) - Add network access toggle (disable network boolean) - Enable Docker MCP Toolkit configuration UI generation - Minimal changes to test configuration interface functionality * Add long lived + Add more relevant tags * Fix config
1 parent 8296f9e commit f4bf7b2

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

servers/desktop-commander/server.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,46 @@
11
name: desktop-commander
22
image: mcp/desktop-commander
33
type: server
4+
longLived: true
45
meta:
56
category: devops
67
tags:
78
- desktop-commander
89
- devops
10+
- filesystem
11+
- terminal
12+
- automation
13+
- file-management
14+
- productivity
15+
- local-system
16+
- tools
17+
- ai
918
about:
1019
title: Desktop Commander
1120
description: Search, update, manage files and run terminal commands with AI
1221
icon: https://avatars.githubusercontent.com/u/182288589?s=200&v=4
1322
source:
1423
project: https://github.com/wonderwhy-er/DesktopCommanderMCP
24+
run:
25+
command:
26+
- npm
27+
- run
28+
- start
29+
volumes:
30+
- '{{desktop-commander.paths|volume|into}}'
31+
config:
32+
description: Configure filesystem access and network permissions for Desktop Commander
33+
parameters:
34+
type: object
35+
properties:
36+
paths:
37+
type: array
38+
items:
39+
type: string
40+
title: Allowed Filesystem Paths
41+
description: List of directories that Desktop Commander can access
42+
default:
43+
- /Users/username/Desktop
44+
- /Users/username/Documents
45+
required:
46+
- paths

0 commit comments

Comments
 (0)