@debugbundle/mcp 0.1.0-next.1 → 0.1.0
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/dist/main.js +2 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -13832,7 +13832,7 @@ function createMcpServer(input) {
|
|
|
13832
13832
|
}
|
|
13833
13833
|
};
|
|
13834
13834
|
}
|
|
13835
|
-
|
|
13835
|
+
function runMcpStdioServer(input) {
|
|
13836
13836
|
const lines = createInterface({
|
|
13837
13837
|
input: input.input,
|
|
13838
13838
|
terminal: false
|
|
@@ -13854,6 +13854,7 @@ async function runMcpStdioServer(input) {
|
|
|
13854
13854
|
}
|
|
13855
13855
|
})();
|
|
13856
13856
|
});
|
|
13857
|
+
return Promise.resolve();
|
|
13857
13858
|
}
|
|
13858
13859
|
|
|
13859
13860
|
// src/main.ts
|