fivocell 4.1.2 → 4.1.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.
@@ -1871,7 +1871,7 @@ async function handleMCPToolCall(name, args) {
1871
1871
  const { buildContext, formatContextForTool } = require('../core/prompt-builder');
1872
1872
  const ctx = buildContext(args.project, args.tool);
1873
1873
  const toolName = args.tool || (args.project ? 'claude-code' : undefined);
1874
- return { content: [{ type: 'text', text: formatContextForTool(ctx, toolName) }], context: ctx };
1874
+ return { content: [{ type: 'text', text: formatContextForTool(ctx, toolName, args.project) }], context: ctx };
1875
1875
  }
1876
1876
  case 'cell_scan_full_pc': {
1877
1877
  const { scanFullPC } = require('../pc-scanner');