MCPcopy Index your code
hub / github.com/simstudioai/sim / listIntegrations

Function listIntegrations

apps/sim/blocks/integration-matcher.ts:126–131  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

124 * once per call site.
125 */
126export function listIntegrations(): readonly IntegrationDescriptor[] {
127 if (cachedList) return cachedList
128 const { byName } = getIntegrationMatcher()
129 cachedList = [...byName.values()].sort((a, b) => a.name.localeCompare(b.name))
130 return cachedList
131}

Callers 3

useMarkdownMentionsFunction · 0.90
useAvailableResourcesFunction · 0.90
useMentionDataFunction · 0.90

Calls 1

getIntegrationMatcherFunction · 0.85

Tested by

no test coverage detected