@trishchuk/ai-think-gate-mcp
Version:
Model Context Protocol (MCP) server that provides AI-powered thinking and code architecture tools
38 lines (37 loc) • 1.41 kB
TypeScript
export declare const LLM_API_KEYS: {
readonly DEFAULT: "LLM_OPENAI_API_KEY";
readonly architect: "LLM_ARCHITECT_API_KEY";
readonly think: "LLM_THINK_API_KEY";
readonly llm_gateway: "LLM_GATEWAY_API_KEY";
};
export declare const LLM_API_MODELS: {
readonly DEFAULT: "LLM_OPENAI_API_MODEL";
readonly architect: "LLM_ARCHITECT_API_MODEL";
readonly think: "LLM_THINK_API_MODEL";
readonly llm_gateway: "LLM_GATEWAY_API_MODEL";
};
export declare const LLM_API_ENDPOINTS: {
readonly DEFAULT: "LLM_OPENAI_API_ENDPOINT";
readonly architect: "LLM_ARCHITECT_API_ENDPOINT";
readonly think: "LLM_THINK_API_ENDPOINT";
readonly llm_gateway: "LLM_GATEWAY_API_ENDPOINT";
};
export declare const ToolNames: {
readonly architect: "architect";
readonly think: "think";
readonly llm_gateway: "llm_gateway";
readonly sequential_thinking: "sequential_thinking";
readonly reasoning_tools: "reasoning_tools";
};
export declare const ALL_CUSTOM_TOOLS: ("architect" | "think" | "llm_gateway" | "sequential_thinking" | "reasoning_tools")[];
export declare const DISABLED_TOOLS_ENV = "THINKGATE_DISABLED_TOOLS";
export declare const DEFAULT_TEMPERATURES: {
readonly architect: 0.2;
readonly think: 0.4;
readonly llm_gateway: 0.7;
};
export declare const MAX_TOKENS: {
readonly architect: 16384;
readonly think: 4096;
readonly llm_gateway: 32768;
};