gitlab-mcp 0.1.2 → 0.1.3
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 +5 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -1655,6 +1655,11 @@ async function runServer() {
|
|
|
1655
1655
|
app.post("/messages", async (req, res) => {
|
|
1656
1656
|
await transport?.handlePostMessage(req, res);
|
|
1657
1657
|
});
|
|
1658
|
+
app.listen(port, () => {
|
|
1659
|
+
console.log(`HTTP server listening on port ${port}`);
|
|
1660
|
+
console.log(`SSE endpoint available at http://localhost:${port}/sse`);
|
|
1661
|
+
console.log(`Message endpoint available at http://localhost:${port}/messages`);
|
|
1662
|
+
});
|
|
1658
1663
|
}
|
|
1659
1664
|
else {
|
|
1660
1665
|
try {
|