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.
Files changed (2) hide show
  1. package/build/index.js +5 -0
  2. 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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitlab-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Model Context Protocol server for GitLab integration",
5
5
  "main": "./build/index.js",
6
6
  "type": "module",