Skip to main content
Glama
ssv445

Lorem Ipsum MCP Server

by ssv445
executionStrategy.js1.1 kB
import { dual } from "../Function.js"; /** @internal */ export const OP_SEQUENTIAL = "Sequential"; /** @internal */ export const OP_PARALLEL = "Parallel"; /** @internal */ export const OP_PARALLEL_N = "ParallelN"; /** @internal */ export const sequential = { _tag: OP_SEQUENTIAL }; /** @internal */ export const parallel = { _tag: OP_PARALLEL }; /** @internal */ export const parallelN = parallelism => ({ _tag: OP_PARALLEL_N, parallelism }); /** @internal */ export const isSequential = self => self._tag === OP_SEQUENTIAL; /** @internal */ export const isParallel = self => self._tag === OP_PARALLEL; /** @internal */ export const isParallelN = self => self._tag === OP_PARALLEL_N; /** @internal */ export const match = /*#__PURE__*/dual(2, (self, options) => { switch (self._tag) { case OP_SEQUENTIAL: { return options.onSequential(); } case OP_PARALLEL: { return options.onParallel(); } case OP_PARALLEL_N: { return options.onParallelN(self.parallelism); } } }); //# sourceMappingURL=executionStrategy.js.map

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ssv445/lorem-ipsum-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server