diff --git a/index.ts b/index.ts index 22d2748..3c0a2eb 100644 --- a/index.ts +++ b/index.ts @@ -10,7 +10,7 @@ import { ListToolsRequestSchema, CallToolRequestSchema } from "@modelcontextprot const server = new Server( { name: "task-manager-server", - version: "1.3.0" + version: "1.3.1" }, { capabilities: { diff --git a/package-lock.json b/package-lock.json index cfb01f9..7fd3d77 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "taskqueue-mcp", - "version": "1.3.0", + "version": "1.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "taskqueue-mcp", - "version": "1.3.0", + "version": "1.3.1", "license": "MIT", "dependencies": { "@ai-sdk/deepseek": "^0.2.2", diff --git a/package.json b/package.json index ff6a9c4..5311e12 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "taskqueue-mcp", - "version": "1.3.0", + "version": "1.3.1", "description": "Task Queue MCP Server", "author": "Christopher C. Smith (christopher.smith@promptlytechnologies.com)", "main": "dist/index.js", diff --git a/src/client/cli.ts b/src/client/cli.ts index 14fa19d..6b7a7eb 100644 --- a/src/client/cli.ts +++ b/src/client/cli.ts @@ -16,7 +16,7 @@ const program = new Command(); program .name("taskqueue") .description("CLI for the Task Manager MCP Server") - .version("1.3.0") + .version("1.3.1") .option( '-f, --file-path ', 'Specify the path to the tasks JSON file. Overrides TASK_MANAGER_FILE_PATH env var.' diff --git a/src/server/tools.ts b/src/server/tools.ts index 905c467..71e949e 100644 --- a/src/server/tools.ts +++ b/src/server/tools.ts @@ -216,7 +216,7 @@ const generateProjectPlanTool: Tool = { items: { type: "string", }, - description: "Optional array of file contents or text to provide as context.", + description: "Optional array of paths to files to attach as context. There is no need to read the files before calling this tool!", }, }, required: ["prompt", "provider", "model"],