@fruition/fcp-mcp-server 1.23.0 → 1.24.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.
@@ -422,9 +422,18 @@ async function pullOnce(ctx, state, result) {
422
422
  if (!slug)
423
423
  continue;
424
424
  const props = node.properties ?? {};
425
- const bodyMarkdown = typeof props.bodyMarkdown === 'string' ? props.bodyMarkdown : '';
425
+ // The capture endpoint receives `bodyMarkdown` from the wire but persists
426
+ // it to kg_nodes.properties as `body_md` (see knowledge-graph.ts upsertSkill).
427
+ // The search endpoint returns properties verbatim, so the pull side reads
428
+ // `body_md`. Accept either for forward-compat in case the storage shape
429
+ // is normalized later.
430
+ const bodyMarkdown = typeof props.body_md === 'string'
431
+ ? props.body_md
432
+ : typeof props.bodyMarkdown === 'string'
433
+ ? props.bodyMarkdown
434
+ : '';
426
435
  if (!bodyMarkdown) {
427
- result.skipped.push({ slug, why: 'remote has no bodyMarkdown' });
436
+ result.skipped.push({ slug, why: 'remote has no body_md' });
428
437
  continue;
429
438
  }
430
439
  const localPath = join(ctx.skillsDir, slug, 'SKILL.md');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fruition/fcp-mcp-server",
3
- "version": "1.23.0",
3
+ "version": "1.24.1",
4
4
  "description": "MCP Server for FCP Launch Coordination System - enables Claude Code to interact with FCP launches and track development time",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",