Skip to main content
Glama
ssv445

Lorem Ipsum MCP Server

by ssv445
data.ts1.17 kB
import * as Equal from "../Equal.js" import * as Hash from "../Hash.js" import type * as Types from "../Types.js" import { StructuralPrototype } from "./effectable.js" /** @internal */ export const ArrayProto: Equal.Equal = Object.assign(Object.create(Array.prototype), { [Hash.symbol](this: Array<any>) { return Hash.cached(this, Hash.array(this)) }, [Equal.symbol](this: Array<any>, that: Equal.Equal) { if (Array.isArray(that) && this.length === that.length) { return this.every((v, i) => Equal.equals(v, (that as Array<any>)[i])) } else { return false } } }) /** @internal */ export const Structural: new<A>( args: Types.Equals<Omit<A, keyof Equal.Equal>, {}> extends true ? void : { readonly [P in keyof A as P extends keyof Equal.Equal ? never : P]: A[P] } ) => {} = (function() { function Structural(this: any, args: any) { if (args) { Object.assign(this, args) } } Structural.prototype = StructuralPrototype return Structural as any })() /** @internal */ export const struct = <As extends Readonly<Record<string, any>>>(as: As): As => Object.assign(Object.create(StructuralPrototype), as)

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