Skip to main content
Glama

LaunchDarkly MCP Server

Official
by launchdarkly
launchdarklyerror.ts920 B
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ /** The base class for all HTTP error responses */ export class LaunchDarklyError extends Error { /** HTTP status code */ public readonly statusCode: number; /** HTTP body */ public readonly body: string; /** HTTP headers */ public readonly headers: Headers; /** HTTP content type */ public readonly contentType: string; /** Raw response */ public readonly rawResponse: Response; constructor( message: string, httpMeta: { response: Response; request: Request; body: string; }, ) { super(message); this.statusCode = httpMeta.response.status; this.body = httpMeta.body; this.headers = httpMeta.response.headers; this.contentType = httpMeta.response.headers.get("content-type") || ""; this.rawResponse = httpMeta.response; this.name = "LaunchDarklyError"; } }

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