@lil2good/nubis-mcp-server 1.0.44 → 1.0.45
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 +2 -2
- package/package.json +1 -1
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 =
|
|
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()
|
|
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(),
|