@starascendin/lifeos-mcp 0.7.0 → 0.7.1

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.
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.7.0";
2
- export declare const BUILD_TIME = "2026-02-12T17:27:58.965Z";
1
+ export declare const VERSION = "0.7.1";
2
+ export declare const BUILD_TIME = "2026-02-15T19:30:56.379Z";
@@ -1,3 +1,3 @@
1
1
  // AUTO-GENERATED — do not edit. Regenerated on every build.
2
- export const VERSION = "0.7.0";
3
- export const BUILD_TIME = "2026-02-12T17:27:58.965Z";
2
+ export const VERSION = "0.7.1";
3
+ export const BUILD_TIME = "2026-02-15T19:30:56.379Z";
package/dist/index.js CHANGED
@@ -238,7 +238,7 @@ const TOOLS = [
238
238
  },
239
239
  {
240
240
  name: "create_issue",
241
- description: "Create a new task/issue. Optionally assign to a project, set priority, and due date.",
241
+ description: "Create a new task/issue. Assign to a project (by key like 'KORT') and optionally a phase (by name like 'Building Foundation' or by ID). Set priority, due date, cycle, and initiative.",
242
242
  inputSchema: {
243
243
  type: "object",
244
244
  properties: {
@@ -256,7 +256,7 @@ const TOOLS = [
256
256
  },
257
257
  projectIdOrKey: {
258
258
  type: "string",
259
- description: "Project ID or key like 'ACME' (optional)",
259
+ description: "Project ID or key like 'KORT'. Required if assigning to a phase by name.",
260
260
  },
261
261
  priority: {
262
262
  type: "string",
@@ -271,9 +271,13 @@ const TOOLS = [
271
271
  type: "string",
272
272
  description: "Assign to a specific cycle (optional)",
273
273
  },
274
+ phaseNameOrId: {
275
+ type: "string",
276
+ description: "Phase name (e.g. 'Building Foundation') or phase ID. Resolved within the project specified by projectIdOrKey. Preferred over phaseId.",
277
+ },
274
278
  phaseId: {
275
279
  type: "string",
276
- description: "Assign to a specific phase within the project (optional)",
280
+ description: "Phase ID (deprecated, use phaseNameOrId instead)",
277
281
  },
278
282
  initiativeId: {
279
283
  type: "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@starascendin/lifeos-mcp",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "MCP server for LifeOS Project Management - manage projects, tasks, notes, and contacts via AI assistants",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",