Skip to main content
Glama

LaunchDarkly MCP Server

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