consult-llm-mcp 2.13.3 → 2.13.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## v2.13.4 (2026-04-24)
4
+
5
+ - Updated DeepSeek model from `deepseek-reasoner` to `deepseek-v4-pro`. The
6
+ `deepseek` selector now resolves to the new model
7
+
3
8
  ## v2.13.3 (2026-04-23)
4
9
 
5
10
  - Added gpt-5.5 model support ($5/$30 per million tokens). The `openai` selector
package/README.md CHANGED
@@ -648,7 +648,7 @@ built-in fallback.
648
648
  | `gemini` | gemini-3.1-pro-preview → gemini-3-pro-preview → gemini-2.5-pro |
649
649
  | `openai` | gpt-5.5 → gpt-5.4 → gpt-5.3-codex → gpt-5.2 → gpt-5.2-codex |
650
650
  | `anthropic` | claude-opus-4-7 |
651
- | `deepseek` | deepseek-reasoner |
651
+ | `deepseek` | deepseek-v4-pro |
652
652
 
653
653
  **Restricting models with `CONSULT_LLM_ALLOWED_MODELS`:**
654
654
 
@@ -717,7 +717,7 @@ models complex questions.
717
717
  - **gemini-2.5-pro**: Google's Gemini 2.5 Pro
718
718
  - **gemini-3-pro-preview**: Google's Gemini 3 Pro Preview
719
719
  - **gemini-3.1-pro-preview**: Google's Gemini 3.1 Pro Preview
720
- - **deepseek-reasoner**: DeepSeek's reasoning model
720
+ - **deepseek-v4-pro**: DeepSeek's V4 Pro reasoning model
721
721
  - **MiniMax-M2.7**: MiniMax's M2.7 reasoning model (204K context)
722
722
  - **gpt-5.5**: OpenAI's GPT-5.5 model
723
723
  - **gpt-5.4**: OpenAI's GPT-5.4 model
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "consult-llm-mcp",
3
- "version": "2.13.3",
3
+ "version": "2.13.4",
4
4
  "description": "MCP server for consulting powerful AI models",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,9 +31,9 @@
31
31
  "ai"
32
32
  ],
33
33
  "optionalDependencies": {
34
- "consult-llm-mcp-darwin-arm64": "2.13.3",
35
- "consult-llm-mcp-darwin-x64": "2.13.3",
36
- "consult-llm-mcp-linux-x64": "2.13.3",
37
- "consult-llm-mcp-linux-arm64": "2.13.3"
34
+ "consult-llm-mcp-darwin-arm64": "2.13.4",
35
+ "consult-llm-mcp-darwin-x64": "2.13.4",
36
+ "consult-llm-mcp-linux-x64": "2.13.4",
37
+ "consult-llm-mcp-linux-arm64": "2.13.4"
38
38
  }
39
39
  }