@lil2good/nubis-mcp-server 1.0.44 → 1.0.46

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
@@ -21,7 +21,7 @@ const server = new mcp_js_1.McpServer({
21
21
  tools: {},
22
22
  },
23
23
  });
24
- const backendUrl = process.env.BACKEND_URL || 'http://localhost:4000';
24
+ const backendUrl = 'https://mcp-server.nubis.app/';
25
25
  // Helper to get results from middleware
26
26
  async function getResultsFromMiddleware({ endpoint, schema }) {
27
27
  const response = await fetch(backendUrl + '/' + endpoint, {
@@ -352,7 +352,7 @@ server.tool("update_task", "Update an existing task (title, description, bolt_id
352
352
  taskID: zod_1.z.string(),
353
353
  title: zod_1.z.string().optional(),
354
354
  description: zod_1.z.string().optional(),
355
- board: zod_1.z.enum(['backlog', 'bugs', 'in-progress', 'priority', 'reviewing', 'completed']).optional().default('backlog'),
355
+ board: zod_1.z.enum(['backlog', 'bugs', 'in-progress', 'priority', 'reviewing', 'completed']).optional(),
356
356
  bolt_id: zod_1.z.string().optional(),
357
357
  parent_task_id: zod_1.z.string().optional(),
358
358
  github_item_type: zod_1.z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lil2good/nubis-mcp-server",
3
- "version": "1.0.44",
3
+ "version": "1.0.46",
4
4
  "description": "MCP server for Nubis task management",
5
5
  "main": "build/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -22,7 +22,7 @@ const server = new McpServer({
22
22
  },
23
23
  });
24
24
 
25
- const backendUrl = 'https://mcp-server.nubis.app/';
25
+ const backendUrl = 'https://mcp-server.nubis.app';
26
26
 
27
27
  // Helper to get results from middleware
28
28
  async function getResultsFromMiddleware({endpoint, schema}: {endpoint: string, schema: any}) {