togello-mcp-server 1.0.13 → 1.0.14

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.
@@ -9,7 +9,7 @@ export const getTodoListHandler = async () => {
9
9
  {
10
10
  type: 'text',
11
11
  text: `The following is a single task represented in the order:
12
- [todo uuid, label of the task, scheduled start date, scheduled end date, priority, category of the task]`,
12
+ [todo uuid, label of the task, scheduled start date, scheduled end date, priority, category of the task, URL associated with the task]`,
13
13
  },
14
14
  {
15
15
  type: 'text',
@@ -25,6 +25,7 @@ export const getTodoListHandler = async () => {
25
25
  todo.scheduledEndDate,
26
26
  todo.priorityNumber,
27
27
  todo.categoryLabel,
28
+ todo.url,
28
29
  ])
29
30
  .join(','),
30
31
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "togello-mcp-server",
4
- "version": "1.0.13",
4
+ "version": "1.0.14",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "build": "tsc && chmod 755 build/index.js",