@bridge_gpt/mcp-server 0.2.12 → 0.2.14

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/build/doctor.js CHANGED
@@ -22,6 +22,7 @@ import { createDefaultStartTicketsDeps } from "./start-tickets.js";
22
22
  import { VERSION } from "./version.generated.js";
23
23
  import { DEFAULT_AGENT_NAME, resolveAgentSpec, isAgentName, formatValidAgentNames, } from "./agent-registry.js";
24
24
  import { getDoctorPrereqDescriptors, probePrerequisite, } from "./start-tickets-prereqs.js";
25
+ import { resolveProfiles } from "./mcp-profile.js";
25
26
  /** User-facing usage text for the read-only `doctor` subcommand. */
26
27
  export function getDoctorUsage() {
27
28
  return [
@@ -136,10 +137,12 @@ export async function collectDoctorResults(deps, agentName) {
136
137
  * (especially the `cursor-agent login` reminder). Pure formatting — no probing.
137
138
  */
138
139
  export function formatDoctorReport(platform, agent, collection) {
140
+ const activeGroups = Array.from(resolveProfiles(process.env.BRIDGE_MCP_PROFILE)).join(", ");
139
141
  const lines = [
140
142
  "start-tickets doctor (read-only diagnostics)",
141
143
  `Platform: ${platform}`,
142
144
  `Selected agent: ${agent.name} (command: ${agent.command})`,
145
+ `Active MCP Groups: \`${activeGroups}\``,
143
146
  "",
144
147
  ];
145
148
  if (!collection.ok) {