@every-env/sparkle-mcp-server
Version:
MCP server for secure Sparkle folder file access with Claude AI, including clipboard history support
13 lines • 458 B
TypeScript
export interface SparkleConfig {
sparkleFolder: string;
maxFileSize: number;
allowedExtensions: string[];
autoIndex: boolean;
watcherEnabled: boolean;
appVersion?: string;
serverPort?: number;
}
export declare const DEFAULT_CONFIG: SparkleConfig;
export declare const loadConfig: () => Promise<SparkleConfig>;
export declare const saveConfig: (config: Partial<SparkleConfig>) => Promise<void>;
//# sourceMappingURL=config.d.ts.map