devglow-mcp 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +4 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -173,7 +173,10 @@ server.registerTool("run_process", {
|
|
|
173
173
|
name: z.string().describe("Display name for the process"),
|
|
174
174
|
path: z.string().describe("Working directory (supports ~/)"),
|
|
175
175
|
command: z.string().describe("Shell command to execute"),
|
|
176
|
-
port: z
|
|
176
|
+
port: z
|
|
177
|
+
.number()
|
|
178
|
+
.optional()
|
|
179
|
+
.describe("Port number the process will listen on. Check package.json scripts or config files for --port flags. Important for DevGlow to show the correct port badge."),
|
|
177
180
|
},
|
|
178
181
|
}, async ({ name, path, command, port }) => {
|
|
179
182
|
await runProcess(name, path, command, port, "claude");
|