converse-mcp-server 2.8.2 → 2.8.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "converse-mcp-server",
3
- "version": "2.8.2",
3
+ "version": "2.8.3",
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",
@@ -224,7 +224,8 @@ async function* createStreamingGenerator(
224
224
  // Build query options
225
225
  // Use higher maxTurns to allow for file reading operations
226
226
  const queryOptions = {
227
- maxTurns: 10, // Allow multiple turns for file operations
227
+ model: 'claude-opus-4-5', // Use Opus 4.5 for best quality
228
+ maxTurns: 20, // Allow multiple turns for file operations
228
229
  permissionMode: 'bypassPermissions', // Don't prompt for permissions
229
230
  };
230
231