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.
- package/build/index.js +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
|
|
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
|
|
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)
|