forkfeed-mcp 1.0.9 → 1.0.10

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/dist/index.js +1 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -102,7 +102,6 @@ server.tool('forkfeed_push', 'Push a generated manifest (forks, feeds, cards) to
102
102
  ?.map((f) => ` - ${f.title} (${f.feeds} feeds)`)
103
103
  .join('\n');
104
104
  // Generate QR code for the first fork's deep link
105
- const forkId = manifest.forks?.[0]?._id;
106
105
  let qrBlock = '';
107
106
  if (forkId) {
108
107
  const url = `https://forkfeed.link/fork/${forkId}`;
@@ -203,7 +202,7 @@ server.tool('forkfeed_status', 'Check your current forkfeed content: which forks
203
202
  if (data.feeds?.length) {
204
203
  lines.push('Published feeds:');
205
204
  for (const feed of data.feeds) {
206
- lines.push(` - ${feed.externalFeedId} | ${feed.title} | ${feed.cardCount} cards`);
205
+ lines.push(` - ${feed.externalFeedId} | ${feed.title} | ${feed.cardCount ?? 0} cards`);
207
206
  }
208
207
  lines.push('');
209
208
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forkfeed-mcp",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "MCP server for pushing GitHub commits to forkfeed",
5
5
  "type": "module",
6
6
  "bin": {