promptgraph-mcp 2.9.3 → 2.9.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.
Files changed (2) hide show
  1. package/marketplace.js +1 -1
  2. package/package.json +1 -1
package/marketplace.js CHANGED
@@ -100,7 +100,7 @@ function httpGet(url) {
100
100
  let data = '';
101
101
  res.setEncoding('utf8');
102
102
  res.on('data', c => data += c);
103
- res.on('end', () => resolve(data));
103
+ res.on('end', () => resolve(data.charCodeAt(0) === 0xFEFF ? data.slice(1) : data));
104
104
  });
105
105
  req.on('timeout', () => { req.destroy(new Error('request timed out')); });
106
106
  req.on('error', reject);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promptgraph-mcp",
3
- "version": "2.9.3",
3
+ "version": "2.9.4",
4
4
  "files": [
5
5
  "*.js",
6
6
  "commands/",