@lil2good/nubis-mcp-server 1.0.15 → 1.0.16
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 +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -3
package/build/index.js
CHANGED
|
@@ -48,7 +48,7 @@ async function getResultsFromMiddleware({ endpoint, schema }) {
|
|
|
48
48
|
return data;
|
|
49
49
|
}
|
|
50
50
|
// Get Boltz -> to save IDs for use in tasks later
|
|
51
|
-
server.tool("get_boltz", "Fetch all boltz for a workspace",
|
|
51
|
+
server.tool("get_boltz", "Fetch all boltz for a workspace", async () => {
|
|
52
52
|
const data = await getResultsFromMiddleware({
|
|
53
53
|
endpoint: 'get_boltz',
|
|
54
54
|
schema: {}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -54,9 +54,7 @@ async function getResultsFromMiddleware({endpoint, schema}: {endpoint: string, s
|
|
|
54
54
|
server.tool(
|
|
55
55
|
"get_boltz",
|
|
56
56
|
"Fetch all boltz for a workspace",
|
|
57
|
-
{
|
|
58
|
-
},
|
|
59
|
-
async ({}) => {
|
|
57
|
+
async () => {
|
|
60
58
|
const data = await getResultsFromMiddleware({
|
|
61
59
|
endpoint: 'get_boltz',
|
|
62
60
|
schema: {}
|