UNPKG

@posthog/wizard

Version:

The PostHog wizard helps you to configure your project

54 lines (53 loc) 2.16 kB
import { DefaultMCPClient } from '../MCPClient'; import { DefaultMCPClientConfig } from '../defaults'; import { z } from 'zod'; export declare const CursorMCPConfig: z.ZodObject<{ mcpServers: z.ZodRecord<z.ZodString, z.ZodObject<{ command: z.ZodOptional<z.ZodString>; args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; }, "strip", z.ZodTypeAny, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ mcpServers: z.ZodRecord<z.ZodString, z.ZodObject<{ command: z.ZodOptional<z.ZodString>; args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; }, "strip", z.ZodTypeAny, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ mcpServers: z.ZodRecord<z.ZodString, z.ZodObject<{ command: z.ZodOptional<z.ZodString>; args: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>; }, "strip", z.ZodTypeAny, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }, { command?: string | undefined; args?: string[] | undefined; env?: Record<string, string> | undefined; }>>; }, z.ZodTypeAny, "passthrough">>; export type CursorMCPConfig = z.infer<typeof DefaultMCPClientConfig>; export declare class CursorMCPClient extends DefaultMCPClient { name: string; constructor(); isClientSupported(): Promise<boolean>; getConfigPath(): Promise<string>; }