Skip to main content
Glama
ssv445

Lorem Ipsum MCP Server

by ssv445
sleep.ts725 B
import type * as Deferred from "../../Deferred.js" import type * as Duration from "../../Duration.js" import type * as FiberId from "../../FiberId.js" /** * `Sleep` represents the state of a scheduled effect, including the time the * effect is scheduled to run, a promise that can be completed to resume * execution of the effect, and the fiber executing the effect. * * @internal */ export interface Sleep { readonly duration: Duration.Duration readonly deferred: Deferred.Deferred<void> readonly fiberId: FiberId.FiberId } /** @internal */ export const make = ( duration: Duration.Duration, deferred: Deferred.Deferred<void>, fiberId: FiberId.FiberId ): Sleep => ({ duration, deferred, fiberId })

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