MCPcopy
hub / github.com/ComposioHQ/composio / getAllToolkits

Function getAllToolkits

docs/lib/toolkit-data.ts:32–36  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30}
31
32export async function getAllToolkits(): Promise<Toolkit[]> {
33 if (cached) return cached.list;
34 const data = await readFile(TOOLKITS_PATH, 'utf-8');
35 return buildCache(parse(data)).list;
36}
37
38export async function getToolkitBySlug(slug: string): Promise<Toolkit | null> {
39 if (cached) return cached.bySlug.get(slug) ?? null;

Callers 3

generateStaticParamsFunction · 0.90
generateManagedAuthIndexFunction · 0.90
generateToolkitsIndexFunction · 0.90

Calls 3

readFileFunction · 0.85
buildCacheFunction · 0.70
parseFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…