converse-mcp-server 2.1.0 → 2.2.0

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/docs/PROVIDERS.md CHANGED
@@ -40,6 +40,7 @@ This guide documents all supported AI providers in the Converse MCP Server and t
40
40
  - `claude-opus-4-1-20250805` - Highest intelligence with extended thinking (32K output)
41
41
  - `claude-sonnet-4-20250514` - Balanced performance with extended thinking (64K output)
42
42
  - `claude-3-7-sonnet-20250219` - Enhanced 3.x generation with thinking (64K output)
43
+ - `claude-haiku-4-5-20251001` - Fast and intelligent with extended thinking (64K output)
43
44
  - `claude-3-5-sonnet-20241022` - Fast and intelligent model (8K output)
44
45
  - `claude-3-5-haiku-20241022` - Fastest Claude model (8K output)
45
46
  - `claude-3-opus-20240229`, `claude-3-sonnet-20240229`, `claude-3-haiku-20240307` - Previous generation
@@ -165,7 +166,7 @@ CODEX_DEFAULT_MODEL=gpt-5-codex # Default: gpt-5-codex
165
166
  All providers support streaming responses for real-time output.
166
167
 
167
168
  ### Image Support
168
- - **Full Support**: OpenAI, Google, X.AI (Grok-4), Anthropic (Claude-3.5-Sonnet, Claude-3-Opus)
169
+ - **Full Support**: OpenAI, Google, X.AI (Grok-4), Anthropic (Claude-4 series, Claude-3.5-Sonnet, Claude-3-Opus)
169
170
  - **Via OpenRouter**: Depends on the underlying model
170
171
  - **No Support**: DeepSeek, Mistral (except Large), Claude-3.5-Haiku, Codex
171
172
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "converse-mcp-server",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "description": "Converse MCP Server - Converse with other LLMs with chat and consensus tools",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -44,7 +44,7 @@ const SUPPORTED_MODELS = {
44
44
  timeout: 300000,
45
45
  supports1MContext: true, // Beta 1M context support
46
46
  description: 'Claude Sonnet 4.5 - Latest Sonnet with enhanced intelligence and optional 1M context',
47
- aliases: ['claude-4.5-sonnet', 'sonnet-4.5', 'claude-sonnet-4.5', 'sonnet4.5', 'claude-sonnet-4-5']
47
+ aliases: ['claude-4.5-sonnet', 'sonnet-4.5', 'claude-sonnet-4.5', 'sonnet4.5', 'claude-sonnet-4-5', 'sonnet', 'claude-sonnet']
48
48
  },
49
49
  'claude-sonnet-4-20250514': {
50
50
  modelName: 'claude-sonnet-4-20250514',
@@ -61,7 +61,7 @@ const SUPPORTED_MODELS = {
61
61
  timeout: 300000,
62
62
  supports1MContext: true, // Beta 1M context support
63
63
  description: 'Claude Sonnet 4 - High intelligence and balanced performance with extended thinking',
64
- aliases: ['claude-4-sonnet', 'sonnet-4', 'sonnet', 'claude-sonnet', 'claude-sonnet-4', 'sonnet4']
64
+ aliases: ['claude-4-sonnet', 'sonnet-4', 'claude-sonnet-4', 'sonnet4']
65
65
  },
66
66
  'claude-3-7-sonnet-20250219': {
67
67
  modelName: 'claude-3-7-sonnet-20250219',
@@ -79,6 +79,22 @@ const SUPPORTED_MODELS = {
79
79
  description: 'Claude 3.7 Sonnet - Enhanced 3.x generation with thinking',
80
80
  aliases: ['claude-3.7-sonnet', 'sonnet-3.7', 'claude-3-7-sonnet', 'claude 3.7 sonnet', 'sonnet 3.7']
81
81
  },
82
+ 'claude-haiku-4-5-20251001': {
83
+ modelName: 'claude-haiku-4-5-20251001',
84
+ friendlyName: 'Claude Haiku 4.5',
85
+ contextWindow: 200000,
86
+ maxOutputTokens: 64000,
87
+ supportsStreaming: true,
88
+ supportsImages: true,
89
+ supportsTemperature: true,
90
+ supportsWebSearch: false,
91
+ supportsThinking: true,
92
+ minThinkingTokens: 1024,
93
+ maxThinkingTokens: 64000,
94
+ timeout: 300000,
95
+ description: 'Claude Haiku 4.5 - Fast and intelligent model with extended thinking',
96
+ aliases: ['claude-haiku-4-5', 'claude-4.5-haiku', 'claude-4-5-haiku', 'haiku-4.5', 'haiku-4-5', 'claude-haiku-4.5', 'haiku4.5', 'claude-haiku-4', 'haiku', 'claude-haiku']
97
+ },
82
98
  'claude-3-5-sonnet-20241022': {
83
99
  modelName: 'claude-3-5-sonnet-20241022',
84
100
  friendlyName: 'Claude 3.5 Sonnet',
@@ -105,7 +121,7 @@ const SUPPORTED_MODELS = {
105
121
  supportsThinking: false,
106
122
  timeout: 180000,
107
123
  description: 'Claude 3.5 Haiku - Fastest model, best for simple queries',
108
- aliases: ['claude-3.5-haiku', 'claude-3-5-haiku-latest', 'haiku', 'claude-haiku', 'haiku-3.5', 'claude 3.5 haiku', 'haiku 3.5']
124
+ aliases: ['claude-3.5-haiku', 'claude-3-5-haiku-latest', 'haiku-3.5', 'claude 3.5 haiku', 'haiku 3.5']
109
125
  }
110
126
  };
111
127