@lil2good/nubis-mcp-server 1.0.21 → 1.0.23

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/build/index.js CHANGED
@@ -90,7 +90,7 @@ server.tool("get_tasks", "Get tasks for a workspace", {
90
90
  `**Task ID:** ${task.id}`,
91
91
  `**Task Number:** ${task.task_number}`,
92
92
  `**Board:** ${task.board}`,
93
- `**Bolt:** ${task.branch_id.name}`,
93
+ `**Bolt:** ${task.bolt || "_No bolt_"}`,
94
94
  `**Description:** ${task.description ? task.description : "_No description_"}`,
95
95
  task.images && task.images.length > 0
96
96
  ? task.images.map((image) => image.url).join('\n')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lil2good/nubis-mcp-server",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "MCP server for Nubis task management",
5
5
  "main": "build/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -102,7 +102,7 @@ server.tool(
102
102
  readonly title: string;
103
103
  readonly task_number: number;
104
104
  readonly board: string;
105
- readonly bolt: { name?: string | null };
105
+ readonly bolt: string;
106
106
  readonly description?: string;
107
107
  readonly images?: readonly { url: string }[];
108
108
  };
@@ -115,7 +115,7 @@ server.tool(
115
115
  `**Task ID:** ${task.id}`,
116
116
  `**Task Number:** ${task.task_number}`,
117
117
  `**Board:** ${task.board}`,
118
- `**Bolt:** ${task.bolt?.name || "_No bolt_"}`,
118
+ `**Bolt:** ${task.bolt || "_No bolt_"}`,
119
119
  `**Description:** ${task.description ? task.description : "_No description_"}`,
120
120
  task.images && task.images.length > 0
121
121
  ? task.images.map((image) => image.url).join('\n')