/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../../../../index.js"; /** * @example * { * strataId: "strataId" * } */ export interface StrataAddServersRequest { /** The strata server ID */ strataId: string; /** List of Klavis integration to add (e.g., 'jira', 'linear'), 'ALL' to add all Klavis integration, or null to add no servers. */ servers?: StrataAddServersRequest.Servers; /** Optional list of external MCP servers to add with their URLs. Each server will be validated before being added. */ externalServers?: Klavis.ExternalServerRequest[]; } export declare namespace StrataAddServersRequest { /** * List of Klavis integration to add (e.g., 'jira', 'linear'), 'ALL' to add all Klavis integration, or null to add no servers. */ type Servers = Klavis.McpServerName[] | "ALL"; }