@mgsoftwarebv/mg-dashboard-mcp 7.0.22 → 7.0.23

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
@@ -10312,7 +10312,7 @@ var TOOLS = [
10312
10312
  // ----- Team memory -----
10313
10313
  {
10314
10314
  name: "get_mg_dashboard_commits",
10315
- description: "Fetch a SAFE, COMPACT MG Dashboard git commit feed for ONE actor over an EXACT time range \u2014 the 'what was actually built' signal for daily operational reports (e.g. Hermes' rolling 19:00\u219219:00 Europe/Amsterdam Prince report), complementing Refront ticket activity. Backed by code_battle_commits (GitHub push webhook + nightly sync). Returns METADATA ONLY per commit: timestamp, repo (org/repo), sha, isMerge, additions, deletions, filesChanged \u2014 plus period summary counts. NEVER returns commit messages, branches, diffs or code (not stored here); message-derived ticket links are therefore out of scope (see `limitations`). The actor is mapped to ONE github login via, in order: MG_DASHBOARD_COMMIT_AUTHOR_ALIASES override, the MG Dashboard user's linked github_username, then code_battle_participants by login or display name. When it can't be mapped (or is ambiguous) the response carries an explicit `limitations` entry explaining how to fix it instead of guessing. dateFrom/dateTo accept a full ISO-8601 timestamp WITH offset (for the exact 19:00\u219219:00 window) or a bare YYYY-MM-DD date (local-midnight boundaries in `timezone`). The window is half-open [from, to).",
10315
+ description: "Fetch a SAFE, COMPACT MG Dashboard git commit feed for ONE actor over an EXACT time range \u2014 the 'what was actually built' signal for daily operational reports (e.g. Hermes' rolling 19:00\u219219:00 Europe/Amsterdam Prince report), complementing Refront ticket activity. Backed by code_battle_commits (GitHub push webhook + nightly sync). Returns METADATA per commit: timestamp, repo (org/repo), sha, isMerge, additions, deletions, filesChanged, commit message, branch (webhook-only), PR number/title/link, ticketNumbers + ticketLinks (high/medium confidence), plus period summary counts. Optional includeChangedPaths returns filenames only (no diffs). Full diffs are never returned. The actor is mapped to ONE github login via, in order: MG_DASHBOARD_COMMIT_AUTHOR_ALIASES override, the MG Dashboard user's linked github_username, then code_battle_participants by login or display name. When it can't be mapped (or is ambiguous) the response carries an explicit `limitations` entry explaining how to fix it instead of guessing. dateFrom/dateTo accept a full ISO-8601 timestamp WITH offset (for the exact 19:00\u219219:00 window) or a bare YYYY-MM-DD date (local-midnight boundaries in `timezone`). The window is half-open [from, to).",
10316
10316
  inputSchema: {
10317
10317
  type: "object",
10318
10318
  properties: {
@@ -10336,10 +10336,18 @@ var TOOLS = [
10336
10336
  type: "string",
10337
10337
  description: "Optional repo filter; accepts 'repo' or 'org/repo' (org prefix ignored), matched case-insensitively."
10338
10338
  },
10339
+ organization: {
10340
+ type: "string",
10341
+ description: "Optional org/owner filter (case-insensitive), e.g. 'MGSoftwareBV' or 'AVARC-Solutions'."
10342
+ },
10339
10343
  includeMerges: {
10340
10344
  type: "boolean",
10341
10345
  description: "Include merge commits in the commits list (default false). Summary counts always report merges separately."
10342
10346
  },
10347
+ includeChangedPaths: {
10348
+ type: "boolean",
10349
+ description: "Include changed file paths per commit (default false). Filenames only \u2014 no file contents or diffs."
10350
+ },
10343
10351
  pageSize: {
10344
10352
  type: "number",
10345
10353
  description: "Max commits listed (1-500, default 100). Summary counts are always the true period totals."
@@ -10555,7 +10563,9 @@ async function executeToolCall(name, a, _serverId) {
10555
10563
  dateTo,
10556
10564
  timezone: typeof a.timezone === "string" ? a.timezone : void 0,
10557
10565
  repository: typeof a.repository === "string" ? a.repository : void 0,
10566
+ organization: typeof a.organization === "string" ? a.organization : void 0,
10558
10567
  includeMerges: typeof a.includeMerges === "boolean" ? a.includeMerges : void 0,
10568
+ includeChangedPaths: typeof a.includeChangedPaths === "boolean" ? a.includeChangedPaths : void 0,
10559
10569
  pageSize: typeof a.pageSize === "number" ? a.pageSize : void 0
10560
10570
  })
10561
10571
  });