crawlforge-mcp-server 4.8.0 → 4.8.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.
package/CLAUDE.md CHANGED
@@ -62,7 +62,7 @@ These guidelines are working if: fewer unnecessary changes in diffs, fewer rewri
62
62
 
63
63
  CrawlForge MCP Server - A professional MCP (Model Context Protocol) server providing 26 web scraping, crawling, and content processing tools (5 inline + 21 advanced).
64
64
 
65
- **Current Version:** 4.8.0
65
+ **Current Version:** 4.8.1
66
66
 
67
67
  ## Development Commands
68
68
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crawlforge-mcp-server",
3
- "version": "4.8.0",
3
+ "version": "4.8.1",
4
4
  "mcpName": "io.github.mysleekdesigns/crawlforge-mcp-server",
5
5
  "description": "CrawlForge MCP Server - Professional Model Context Protocol server with 26 web scraping, crawling, deep-research, and autonomous-extraction tools. Returns clean Markdown and structured JSON for Claude, Cursor, and any MCP client. Defaults to local Ollama for LLM extraction (no API key needed); OpenAI/Anthropic available as opt-in. Includes a unified multi-format scrape tool, an autonomous agent, pre-built site templates, and Camoufox stealth browsing.",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -89,7 +89,7 @@ if (configErrors.length > 0 && config.server.nodeEnv === 'production') {
89
89
  // Create the server
90
90
  const server = new McpServer({
91
91
  name: "crawlforge",
92
- version: "4.7.2",
92
+ version: "4.8.1",
93
93
  description: "Production-ready MCP server with 26 web scraping, crawling, and content processing tools. Features MCP Resources (crawlforge://), Prompts, Sampling fallback, Elicitation, stealth browsing, deep research, structured extraction, change tracking, local-LLM extraction via Ollama, unified multi-format scrape, and autonomous agent tool.",
94
94
  homepage: "https://www.crawlforge.dev",
95
95
  icon: "https://www.crawlforge.dev/icon.png"
@@ -467,7 +467,17 @@ export class DeepResearchTool {
467
467
 
468
468
  const formatted = {
469
469
  researchSummary: results.researchSummary,
470
- metadata: results.metadata
470
+ metadata: results.metadata,
471
+ // Always surface a top-level source/citation list so every output format
472
+ // returns it (parity with raw_evidence mode, which already does). Before,
473
+ // only citations_only exposed `sources` in LLM mode, so comprehensive /
474
+ // summary / conflicts_focus silently dropped the source list.
475
+ sources: (results.supportingEvidence || []).map(source => ({
476
+ title: source.title,
477
+ url: source.url,
478
+ credibility: source.credibility,
479
+ relevance: source.relevance
480
+ }))
471
481
  };
472
482
 
473
483
  switch (params.outputFormat) {