@lil2good/nubis-mcp-server 1.0.28 → 1.0.29

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lil2good/nubis-mcp-server",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "description": "MCP server for Nubis task management",
5
5
  "main": "build/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -115,7 +115,6 @@ server.tool(
115
115
  `**Task ID:** ${task.id}`,
116
116
  `**Task Number:** ${task.task_number}`,
117
117
  `**Board:** ${task.board}`,
118
- `**Bolt:** ${task.bolt ? task.bolt.name : "_No bolt_"}`,
119
118
  `**Description:** ${task.description ? task.description : "_No description_"}`,
120
119
  task.images && task.images.length > 0
121
120
  ? task.images.map((image) => image.url).join('\n')