@floomhq/floom 1.0.27 → 1.0.28
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/doctor.js +1 -1
- package/package.json +1 -1
package/dist/doctor.js
CHANGED
|
@@ -83,7 +83,7 @@ async function checkMcp() {
|
|
|
83
83
|
// package name is @floomhq/floom-mcp-sync. Detect by package name OR
|
|
84
84
|
// by "floom" + "mcp_servers"/"mcpServers" co-occurrence.
|
|
85
85
|
const hasFloom = buf.includes("@floomhq/floom-mcp-sync") ||
|
|
86
|
-
(buf.includes("\"floom\"") && (buf.includes("mcpServers") || buf.includes("mcp_servers"))) ||
|
|
86
|
+
(buf.includes("\"floom\"") && (buf.includes("mcpServers") || buf.includes("mcp_servers") || buf.includes("\"mcp\""))) ||
|
|
87
87
|
(buf.includes("[mcp_servers.floom]"));
|
|
88
88
|
if (hasFloom)
|
|
89
89
|
found.push({ name: cand.name, configPath: cand.path, hasFloom });
|