Skip to content

Commit b909354

Browse files
Update doc for 'attachments' tool parameter
1 parent 97a6d25 commit b909354

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { ListToolsRequestSchema, CallToolRequestSchema } from "@modelcontextprot
1010
const server = new Server(
1111
{
1212
name: "task-manager-server",
13-
version: "1.3.0"
13+
version: "1.3.1"
1414
},
1515
{
1616
capabilities: {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "taskqueue-mcp",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Task Queue MCP Server",
55
"author": "Christopher C. Smith ([email protected])",
66
"main": "dist/index.js",

src/client/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const program = new Command();
1616
program
1717
.name("taskqueue")
1818
.description("CLI for the Task Manager MCP Server")
19-
.version("1.3.0")
19+
.version("1.3.1")
2020
.option(
2121
'-f, --file-path <path>',
2222
'Specify the path to the tasks JSON file. Overrides TASK_MANAGER_FILE_PATH env var.'

src/server/tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ const generateProjectPlanTool: Tool = {
216216
items: {
217217
type: "string",
218218
},
219-
description: "Optional array of file contents or text to provide as context.",
219+
description: "Optional array of paths to files to attach as context. There is no need to read the files before calling this tool!",
220220
},
221221
},
222222
required: ["prompt", "provider", "model"],

0 commit comments

Comments
 (0)