You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-1Lines changed: 24 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,30 @@ npx -y mcp-devcontainers
32
32
33
33
## 📚 Tools
34
34
35
-
### In Development. Coming Soon
35
+
Tools are built on the [devcontainers/cli](https://github.com/devcontainers/cli)
36
+
37
+
They enable you to generate and configure development containers directly from `devcontainer.json` configuration files:
38
+
39
+
-### devcontainer_up
40
+
- workspaceFolder: Path to the workspace folder (string)
41
+
- outputFilePath: Path for output logs (string)
42
+
43
+
> Initializes and starts a devcontainer environment in the specified workspace folder. Ensures the devcontainer is operational and ready for development tasks.
44
+
45
+
46
+
-### devcontainer_run_user_commands
47
+
- workspaceFolder: Path to the workspace folder (string)
48
+
- outputFilePath: Path for output logs (string)
49
+
50
+
> Executes user-defined postCreateCommand and postStartCommand scripts within the devcontainer for the specified workspace. Use this to run setup or initialization tasks after container startup.
51
+
52
+
53
+
-### devcontainer_exec
54
+
- workspaceFolder: Path to the workspace folder (string)
55
+
- outputFilePath: Path for output logs (string)
56
+
- command: Command to execute (array of string)
57
+
58
+
> Runs a custom shell command inside the devcontainer for the specified workspace. Useful for executing arbitrary commands or scripts within the devcontainer environment.
0 commit comments