devglow-mcp 1.0.4 → 1.0.5

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 +2 -2
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -223,11 +223,11 @@ function createMcpServer() {
223
223
  // ── Tool: update_project ──
224
224
  server.registerTool("update_project", {
225
225
  title: "Update a project's metadata",
226
- description: "Update an existing DevGlow project's metadata (currently only description). Use this to fill in or refresh a project's description after registering it.",
226
+ description: "Update a kept (permanent) DevGlow project's metadata (currently only description). Does NOT apply to temporary AI processes for those, set the description at run_process time, or have the user keep the process first.",
227
227
  inputSchema: {
228
228
  id: z
229
229
  .string()
230
- .describe("Project id (call list_projects first to get the id)"),
230
+ .describe("Project id (call list_projects first). Must be a permanent project, not an AI process (those have ids starting with 'ai-')."),
231
231
  description: z
232
232
  .string()
233
233
  .max(280)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devglow-mcp",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "MCP server for DevGlow — manage local dev processes through AI agents",
5
5
  "type": "module",
6
6
  "bin": {