@happyalienai/lobsterroll-mcp 1.0.0 → 1.0.1
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16,7 +16,7 @@ async function runStdio() {
|
|
|
16
16
|
await server.connect(transport);
|
|
17
17
|
}
|
|
18
18
|
async function runHttp() {
|
|
19
|
-
const port = parseInt(process.env.PORT ?? '
|
|
19
|
+
const port = parseInt(process.env.PORT ?? '3333', 10);
|
|
20
20
|
const httpServer = createHttpServer(async (req, res) => {
|
|
21
21
|
const url = new URL(req.url ?? '/', `http://localhost:${port}`);
|
|
22
22
|
if (req.method === 'GET' && url.pathname === '/') {
|