-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclawdbot.plugin.json
More file actions
38 lines (38 loc) · 1.19 KB
/
clawdbot.plugin.json
File metadata and controls
38 lines (38 loc) · 1.19 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
{
"id": "docker-mcp",
"name": "Docker MCP Toolkit",
"description": "Docker Desktop MCP Toolkit integration for container management, image operations, and Docker development workflows.",
"version": "1.0.0",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable Docker MCP Toolkit integration (default: true)"
},
"mcpCommand": {
"type": "string",
"description": "Path to docker command (default: 'docker')"
},
"mcpArgs": {
"type": "array",
"items": { "type": "string" },
"description": "Arguments to pass to docker mcp gateway run (default: ['mcp', 'gateway', 'run'])"
},
"enabledServers": {
"type": "array",
"items": { "type": "string" },
"description": "List of MCP servers to enable (default: all available)"
},
"timeout": {
"type": "number",
"description": "Timeout in milliseconds for MCP operations (default: 30000)"
},
"debug": {
"type": "boolean",
"description": "Enable debug logging (default: false)"
}
}
}
}