MCPcopy
hub / github.com/cursor/community-plugins / markScanning

Function markScanning

apps/cursor/src/lib/plugins/scan.ts:231–237  ·  view source on GitHub ↗
(pluginId: string)

Source from the content-addressed store, hash-verified

229}
230
231async function markScanning(pluginId: string) {
232 const supabase = await createClient();
233 await supabase
234 .from("plugins")
235 .update({ scan_status: "scanning" })
236 .eq("id", pluginId);
237}
238
239/**
240 * Top-N active plugins with a name trigram-similar to this one.

Callers 1

runPluginScanFunction · 0.85

Calls 1

createClientFunction · 0.90

Tested by

no test coverage detected