consult-llm-mcp 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -381,8 +381,8 @@ See the "Using web mode..." example above for a concrete transcript.
381
381
  - `DEEPSEEK_API_KEY` - Your DeepSeek API key (required for DeepSeek models)
382
382
  - `CONSULT_LLM_DEFAULT_MODEL` - Override the default model (optional)
383
383
  - Options: `gpt-5.2` (default), `gemini-2.5-pro`, `gemini-3-pro-preview`,
384
- `deepseek-reasoner`, `gpt-5.2-codex`, `gpt-5.1-codex-max`, `gpt-5.1-codex`,
385
- `gpt-5.1-codex-mini`, `gpt-5.1`
384
+ `deepseek-reasoner`, `gpt-5.3-codex`, `gpt-5.2-codex`, `gpt-5.1-codex-max`,
385
+ `gpt-5.1-codex`, `gpt-5.1-codex-mini`, `gpt-5.1`
386
386
  - `GEMINI_MODE` - Choose between API or CLI mode for Gemini models (optional)
387
387
  - Options: `api` (default), `cli`
388
388
  - CLI mode uses the system-installed `gemini` CLI tool
@@ -474,8 +474,8 @@ models complex questions.
474
474
 
475
475
  - **model** (optional): LLM model to use
476
476
  - Options: `gpt-5.2` (default), `gemini-2.5-pro`, `gemini-3-pro-preview`,
477
- `deepseek-reasoner`, `gpt-5.2-codex`, `gpt-5.1-codex-max`, `gpt-5.1-codex`,
478
- `gpt-5.1-codex-mini`, `gpt-5.1`
477
+ `deepseek-reasoner`, `gpt-5.3-codex`, `gpt-5.2-codex`, `gpt-5.1-codex-max`,
478
+ `gpt-5.1-codex`, `gpt-5.1-codex-mini`, `gpt-5.1`
479
479
 
480
480
  - **web_mode** (optional): Copy prompt to clipboard instead of querying LLM
481
481
  - Default: `false`
@@ -497,6 +497,7 @@ models complex questions.
497
497
  - **deepseek-reasoner**: DeepSeek's reasoning model ($0.55/$2.19 per million
498
498
  tokens)
499
499
  - **gpt-5.2**: OpenAI's latest GPT model
500
+ - **gpt-5.3-codex**: OpenAI's Codex model based on GPT-5.3
500
501
  - **gpt-5.2-codex**: OpenAI's Codex model based on GPT-5.2
501
502
  - **gpt-5.1-codex-max**: Strongest OpenAI Codex model
502
503
  - **gpt-5.1-codex**: OpenAI's Codex model optimized for coding
package/dist/config.d.ts CHANGED
@@ -3,7 +3,7 @@ export declare const SupportedChatModel: z.ZodEnum<{
3
3
  [x: string]: string;
4
4
  }>;
5
5
  export type SupportedChatModel = z.infer<typeof SupportedChatModel>;
6
- export declare const fallbackModel: "gemini-2.5-pro" | "gemini-3-pro-preview" | "deepseek-reasoner" | "gpt-5.2" | "gpt-5.2-codex" | "gpt-5.1-codex-max" | "gpt-5.1-codex" | "gpt-5.1-codex-mini" | "gpt-5.1";
6
+ export declare const fallbackModel: "gemini-2.5-pro" | "gemini-3-pro-preview" | "deepseek-reasoner" | "gpt-5.2" | "gpt-5.3-codex" | "gpt-5.2-codex" | "gpt-5.1-codex-max" | "gpt-5.1-codex" | "gpt-5.1-codex-mini" | "gpt-5.1";
7
7
  declare const Config: z.ZodObject<{
8
8
  openaiApiKey: z.ZodOptional<z.ZodString>;
9
9
  geminiApiKey: z.ZodOptional<z.ZodString>;
package/dist/models.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const ALL_MODELS: readonly ["gemini-2.5-pro", "gemini-3-pro-preview", "deepseek-reasoner", "gpt-5.2", "gpt-5.2-codex", "gpt-5.1-codex-max", "gpt-5.1-codex", "gpt-5.1-codex-mini", "gpt-5.1"];
1
+ export declare const ALL_MODELS: readonly ["gemini-2.5-pro", "gemini-3-pro-preview", "deepseek-reasoner", "gpt-5.2", "gpt-5.3-codex", "gpt-5.2-codex", "gpt-5.1-codex-max", "gpt-5.1-codex", "gpt-5.1-codex-mini", "gpt-5.1"];
package/dist/models.js CHANGED
@@ -3,6 +3,7 @@ export const ALL_MODELS = [
3
3
  'gemini-3-pro-preview',
4
4
  'deepseek-reasoner',
5
5
  'gpt-5.2',
6
+ 'gpt-5.3-codex',
6
7
  'gpt-5.2-codex',
7
8
  'gpt-5.1-codex-max',
8
9
  'gpt-5.1-codex',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "consult-llm-mcp",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "MCP server for consulting powerful AI models",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",