UNPKG

promptrix-mcp

Version:

MCP Server for Promptrix - AI prompt enhancement and optimization for Claude Code

29 lines 901 B
/** * Constants for MCP server */ export declare const API_DEFAULTS: { readonly BASE_URL: "https://api.promptrix.co/v1"; readonly BASE_URL_NO_VERSION: "https://api.promptrix.co"; readonly BASE_URL_LOCAL: "http://localhost:8787/v1"; readonly BASE_URL_NO_VERSION_LOCAL: "http://localhost:8787"; readonly TIMEOUT: 30000; }; export declare const ENV_VARS: { readonly API_URL: "PROMPTRIX_API"; readonly API_KEY: "PROMPTRIX_API_KEY"; readonly AUTO_THRESHOLD: "PROMPTRIX_AUTO_THRESHOLD"; }; export declare const QUALITY_DEFAULTS: { readonly THRESHOLD: 70; readonly BASE_SCORE: 80; readonly CONFIDENCE: 0.85; }; /** * Get API URL from environment or default */ export declare function getApiUrl(): string; /** * Get quality threshold from environment or default */ export declare function getQualityThreshold(): number; //# sourceMappingURL=constants.d.ts.map