Skip to main content
Glama

LaunchDarkly MCP Server

Official
by launchdarkly
link.ts1.67 kB
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Link = { href?: string | undefined; type?: string | undefined; }; /** @internal */ export const Link$inboundSchema: z.ZodType<Link, z.ZodTypeDef, unknown> = z .object({ href: z.string().optional(), type: z.string().optional(), }); /** @internal */ export type Link$Outbound = { href?: string | undefined; type?: string | undefined; }; /** @internal */ export const Link$outboundSchema: z.ZodType<Link$Outbound, z.ZodTypeDef, Link> = z.object({ href: z.string().optional(), type: z.string().optional(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace Link$ { /** @deprecated use `Link$inboundSchema` instead. */ export const inboundSchema = Link$inboundSchema; /** @deprecated use `Link$outboundSchema` instead. */ export const outboundSchema = Link$outboundSchema; /** @deprecated use `Link$Outbound` instead. */ export type Outbound = Link$Outbound; } export function linkToJSON(link: Link): string { return JSON.stringify(Link$outboundSchema.parse(link)); } export function linkFromJSON( jsonString: string, ): SafeParseResult<Link, SDKValidationError> { return safeParse( jsonString, (x) => Link$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Link' from JSON`, ); }

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/launchdarkly/mcp-server'

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