MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / staticIntegrations

Function staticIntegrations

packages/core/sdk/src/executor.ts:1643–1649  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1641 ConnectionName.make(integration.id === EXECUTOR_INTEGRATION_ID ? "coreTools" : "static");
1642
1643 const staticIntegrations = (): readonly StaticIntegrationDecl[] => {
1644 const byId = new Map<string, StaticIntegrationDecl>();
1645 for (const entry of staticTools.values()) {
1646 if (!byId.has(entry.integration.id)) byId.set(entry.integration.id, entry.integration);
1647 }
1648 return [...byId.values()];
1649 };
1650
1651 const staticDeclToIntegration = (integration: StaticIntegrationDecl): Integration => ({
1652 slug: IntegrationSlug.make(integration.id),

Callers 2

integrationsListFunction · 0.85
integrationsGetFunction · 0.85

Calls 2

valuesMethod · 0.80
setMethod · 0.80

Tested by

no test coverage detected