Skip to main content
Glama

LaunchDarkly MCP Server

Official
by launchdarkly
error.ts1.91 kB
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { LaunchDarklyError } from "./launchdarklyerror.js"; export type ErrorTData = { message: string; code: string; }; export class ErrorT extends LaunchDarklyError { code: string; /** The original data that was passed to this error instance. */ data$: ErrorTData; constructor( err: ErrorTData, httpMeta: { response: Response; request: Request; body: string }, ) { const message = err.message || `API error occurred: ${JSON.stringify(err)}`; super(message, httpMeta); this.data$ = err; this.code = err.code; this.name = "ErrorT"; } } /** @internal */ export const ErrorT$inboundSchema: z.ZodType<ErrorT, z.ZodTypeDef, unknown> = z .object({ message: z.string(), code: z.string(), request$: z.instanceof(Request), response$: z.instanceof(Response), body$: z.string(), }) .transform((v) => { return new ErrorT(v, { request: v.request$, response: v.response$, body: v.body$, }); }); /** @internal */ export type ErrorT$Outbound = { message: string; code: string; }; /** @internal */ export const ErrorT$outboundSchema: z.ZodType< ErrorT$Outbound, z.ZodTypeDef, ErrorT > = z.instanceof(ErrorT) .transform(v => v.data$) .pipe(z.object({ message: z.string(), code: z.string(), })); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace ErrorT$ { /** @deprecated use `ErrorT$inboundSchema` instead. */ export const inboundSchema = ErrorT$inboundSchema; /** @deprecated use `ErrorT$outboundSchema` instead. */ export const outboundSchema = ErrorT$outboundSchema; /** @deprecated use `ErrorT$Outbound` instead. */ export type Outbound = ErrorT$Outbound; }

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