import type { McpServerConfig } from './McpServerConfig'; /** * Body for ``POST mcp-servers/``. */ export type McpServerCreate = { name: string; config: McpServerConfig; };