pulsecloud-mcp 1.0.2 → 1.0.4
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
|
@@ -827,7 +827,7 @@ function formatMB(mb) {
|
|
|
827
827
|
return `${mb} MB`;
|
|
828
828
|
}
|
|
829
829
|
// ─── SSE SERVER ─────────────────────────────────────────────────
|
|
830
|
-
const port = parseInt(process.env.PORT || '
|
|
830
|
+
const port = parseInt(process.env.PORT || '3002', 10);
|
|
831
831
|
const sessions = new Map();
|
|
832
832
|
const sseServer = http.createServer(async (req, res) => {
|
|
833
833
|
if (req.method === 'GET' && req.url === '/sse') {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pulsecloud-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "MCP server for PulseCloud hosting platform - manage Pterodactyl servers, Nginx Proxy Manager, Cloudflare DNS, and more via AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|