@mgsoftwarebv/mg-dashboard-mcp 7.4.0 → 7.4.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/dist/index.js CHANGED
@@ -10792,7 +10792,7 @@ var TOOLS = [
10792
10792
  },
10793
10793
  {
10794
10794
  name: "research_topic",
10795
- description: "Turn SEVERAL public sources on one topic into a single cross-checked, sourced 'evidence pack' (ticket 2026-DASMG-040). Composes extract_article per URL and aggregates: collect, extract, cross-check, then hand a downstream agent a safe base to write ORIGINAL content from. Modes: curated (`urls` + optional `topic`), discovery (`topic` + `discover.enabled` \u2014 finds source URLs for you), hybrid (`urls` + `discover` \u2014 curated seeds topped up by discovery). Discovery uses an env-gated web-search backend (open-web) plus a keyless sitemap crawl over `discover.allowDomains`; with no backend it degrades to a `discovery_unavailable` limitation and curated `urls` still work. The method used is reported as `discovery_method:...`. Returns `sources` (id,url,canonicalUrl,source,title,publishedAt,authorityTier,extractionMethod,limitations), `verifiedFacts` (claim + corroboratedBy + confidence + authorityTier + asOf), `conflicts` (variants + suggestedResolution), `uniqueClaims` (single-source), `openQuestions`, `verbatimWarnings`, and pack-level `limitations`. Structured EVIDENCE ONLY \u2014 never ready-to-publish prose or brand voice; every claim traces back to a source id. PUBLIC URLs only (inherits the SSRF guard). Persist + reuse with save_research_pack / get_research_pack (2026-DASMG-041).",
10795
+ description: "Turn SEVERAL public sources on one topic into a single cross-checked, sourced 'evidence pack' (ticket 2026-DASMG-040). Composes extract_article per URL and aggregates: collect, extract, cross-check, then hand a downstream agent a safe base to write ORIGINAL content from. Modes: curated (`urls` + optional `topic`), discovery (`topic` + `discover.enabled` \u2014 finds source URLs for you), hybrid (`urls` + `discover` \u2014 curated seeds topped up by discovery). Discovery runs open-web search FIRST (unscoped + site-scoped when allowDomains is set); allowDomains is a prefer/guarantee set, not a hard filter on search. Sitemap top-up stays within allowDomains. Reported via `discovery.backend` (search|sitemap|both|unavailable) and per-source `discoveryOrigin`. Optional `discover.sourcePolicy: official_only`. Returns `sources` (id,url,\u2026,discoveryOrigin,authorityTier incl. grid_operator), `discovery` report, `verifiedFacts`, `conflicts`, `uniqueClaims`, `openQuestions`, `verbatimWarnings`, and pack-level `limitations`. Structured EVIDENCE ONLY \u2014 never ready-to-publish prose or brand voice; every claim traces back to a source id. PUBLIC URLs only (inherits the SSRF guard). Persist + reuse with save_research_pack / get_research_pack (2026-DASMG-041).",
10796
10796
  inputSchema: {
10797
10797
  type: "object",
10798
10798
  properties: {
@@ -10813,8 +10813,13 @@ var TOOLS = [
10813
10813
  maxSources: { type: "number", description: "Cap on total sources, curated + discovered (1-12, default 8)." },
10814
10814
  recencyDays: { type: "number", description: "Prefer/keep sources no older than this (applied to sitemap lastmod)." },
10815
10815
  locale: { type: "string", description: "Locale hint, e.g. nl-NL." },
10816
- allowDomains: { type: "array", items: { type: "string" }, description: "Whitelist domains; also the targets for the keyless sitemap crawl." },
10817
- blockDomains: { type: "array", items: { type: "string" }, description: "Domains to exclude from discovery." }
10816
+ allowDomains: { type: "array", items: { type: "string" }, description: "Prefer/guarantee domains for search ranking; targets for sitemap top-up." },
10817
+ blockDomains: { type: "array", items: { type: "string" }, description: "Domains to exclude from discovery." },
10818
+ sourcePolicy: {
10819
+ type: "string",
10820
+ enum: ["official_only"],
10821
+ description: "Restrict discovered sources to official whitelist (grid operators, ACM, government)."
10822
+ }
10818
10823
  }
10819
10824
  },
10820
10825
  includeRawText: {
@@ -10948,7 +10953,8 @@ var TOOLS = [
10948
10953
  recencyDays: { type: "number" },
10949
10954
  locale: { type: "string" },
10950
10955
  allowDomains: { type: "array", items: { type: "string" } },
10951
- blockDomains: { type: "array", items: { type: "string" } }
10956
+ blockDomains: { type: "array", items: { type: "string" } },
10957
+ sourcePolicy: { type: "string", enum: ["official_only"] }
10952
10958
  }
10953
10959
  },
10954
10960
  locale: { type: "string", description: "Locale of the pack." },