@1medium/cli 1.7.0 → 1.8.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1medium/cli",
3
- "version": "1.7.0",
3
+ "version": "1.8.0",
4
4
  "description": "CLI and MCP server for 1Medium AI task management",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/mcp-server.js CHANGED
@@ -152,7 +152,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
152
152
  properties: {
153
153
  id: {
154
154
  type: "string",
155
- description: "Task ID (UUID or uid like A1, A2)",
155
+ description: "Task ID (e.g. VOBEX-6hd, or UUID)",
156
156
  },
157
157
  },
158
158
  required: ["id"],
@@ -166,7 +166,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
166
166
  properties: {
167
167
  id: {
168
168
  type: "string",
169
- description: "Task ID to update",
169
+ description: "Task ID (e.g. VOBEX-6hd, or UUID)",
170
170
  },
171
171
  title: {
172
172
  type: "string",
@@ -197,7 +197,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
197
197
  properties: {
198
198
  id: {
199
199
  type: "string",
200
- description: "Task ID to complete",
200
+ description: "Task ID (e.g. VOBEX-6hd, or UUID)",
201
201
  },
202
202
  summary: {
203
203
  type: "string",
@@ -215,7 +215,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
215
215
  properties: {
216
216
  id: {
217
217
  type: "string",
218
- description: "Task ID to comment on",
218
+ description: "Task ID (e.g. VOBEX-6hd, or UUID)",
219
219
  },
220
220
  message: {
221
221
  type: "string",