Skip to main content
Glama

Flipt MCP Server

Official
by flipt-io
baseapi.ts686 B
import { Configuration } from '../configuration' /** * * @export */ export const COLLECTION_FORMATS = { csv: ",", ssv: " ", tsv: "\t", pipes: "|", }; /** * * @export * @class BaseAPI */ export class BaseAPIRequestFactory { constructor(protected configuration: Configuration) { } }; /** * * @export * @class RequiredError * @extends {Error} */ export class RequiredError extends Error { override name: "RequiredError" = "RequiredError"; constructor(public api: string, public method: string, public field: string) { super("Required parameter " + field + " was null or undefined when calling " + api + "." + method + "."); } }

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

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