friday-mcp-v2 3.0.2 → 3.0.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.
@@ -1166,13 +1166,6 @@ function appendSnapshotToTextLegacy(text, snapshot, refInfo) {
1166
1166
  }
1167
1167
 
1168
1168
  let out = text + `\n\n[snapshot:${snapshot.snapshotId} rev:${snapshot.revision}]${expandedLine}`;
1169
- if (snapshot.blocks && snapshot.blocks.length > 0) {
1170
- out += '\nblocks:';
1171
- for (const b of snapshot.blocks) {
1172
- const parent = b.parentIndex !== null ? `,p:${b.parentIndex}` : '';
1173
- out += `\n [${b.index}|${b.ref}] ${b.type} (d:${b.depth}${parent})`;
1174
- }
1175
- }
1176
1169
  return out;
1177
1170
  }
1178
1171
 
package/dist/ws-server.js CHANGED
@@ -42,7 +42,7 @@ export class FridayWSServer {
42
42
  throw err;
43
43
  }
44
44
  this._startHeartbeatCheck();
45
- console.error(`[F.R.I.D.A.Y][WS] Token: ${this.token.slice(0, 8)}...`);
45
+ dbg(`Token: ${this.token.slice(0, 8)}...`);
46
46
  }
47
47
 
48
48
  stop() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "friday-mcp-v2",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "WordPress MCP Server for Claude Code - REST API direct communication",
5
5
  "type": "module",
6
6
  "main": "dist/mcp-server.js",