converse-mcp-server 2.29.0 → 2.29.2

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/.env.example CHANGED
@@ -77,9 +77,9 @@ OPENROUTER_REFERER=https://github.com/FallDownTheSystem/converse
77
77
  # WARNING: Interactive policies may cause hangs in server/headless mode
78
78
  # CODEX_APPROVAL_POLICY=never
79
79
 
80
- # Default Codex model (default: gpt-5.6)
81
- # Options: gpt-5.6, gpt-5.6-terra, gpt-5.6-luna, gpt-5.5, gpt-5.3-codex
82
- # CODEX_MODEL=gpt-5.6
80
+ # Default Codex model (default: gpt-5.6-sol)
81
+ # Options: gpt-5.6-sol, gpt-5.6-terra, gpt-5.6-luna, gpt-5.5, gpt-5.4, gpt-5.4-mini, gpt-5.3-codex-spark
82
+ # CODEX_MODEL=gpt-5.6-sol
83
83
 
84
84
  # ============================================
85
85
  # Server Configuration
package/docs/PROVIDERS.md CHANGED
@@ -95,7 +95,7 @@ This guide documents all supported AI providers in the Converse MCP Server and t
95
95
  - `CODEX_SANDBOX_MODE` - Filesystem access control (default: read-only)
96
96
  - `CODEX_SKIP_GIT_CHECK` - Skip Git repository validation (default: true)
97
97
  - `CODEX_APPROVAL_POLICY` - Command approval behavior (default: never)
98
- - `CODEX_MODEL` - Underlying model for Codex sessions (default: gpt-5.6; e.g. gpt-5.6-terra, gpt-5.6-luna, gpt-5.5)
98
+ - `CODEX_MODEL` - Underlying model for Codex sessions (default: gpt-5.6-sol; e.g. gpt-5.6-terra, gpt-5.6-luna, gpt-5.5)
99
99
  - **Supported Models**:
100
100
  - `codex` - OpenAI Codex agentic coding assistant (GPT-5.6 by default)
101
101
  - Thread-based sessions with persistent context
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "converse-mcp-server",
3
- "version": "2.29.0",
3
+ "version": "2.29.2",
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",
@@ -100,7 +100,7 @@
100
100
  "@lydell/node-pty": "1.2.0-beta.12",
101
101
  "@mistralai/mistralai": "^2.4.1",
102
102
  "@modelcontextprotocol/sdk": "^1.29.0",
103
- "@openai/codex-sdk": "^0.142.5",
103
+ "@openai/codex-sdk": "^0.144.1",
104
104
  "ai": "^6.0.208",
105
105
  "cors": "^2.8.6",
106
106
  "dotenv": "^17.4.2",
package/src/config.js CHANGED
@@ -279,9 +279,9 @@ const CONFIG_SCHEMA = {
279
279
  },
280
280
  CODEX_MODEL: {
281
281
  type: 'string',
282
- default: 'gpt-5.6',
282
+ default: 'gpt-5.6-sol',
283
283
  description:
284
- 'Default Codex model (e.g., gpt-5.6, gpt-5.6-terra, gpt-5.6-luna, gpt-5.5)',
284
+ 'Default Codex model (e.g., gpt-5.6-sol, gpt-5.6-terra, gpt-5.6-luna, gpt-5.5)',
285
285
  },
286
286
 
287
287
  // Copilot configuration