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.
Files changed (2) hide show
  1. package/build/index.js +4 -1
  2. 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.number().optional().describe("Port number (optional)"),
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");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devglow-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "MCP server for DevGlow — manage local dev processes through AI agents",
5
5
  "type": "module",
6
6
  "bin": {