mcp-agents 0.5.0 → 0.5.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-agents",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "MCP server that wraps AI CLI tools (Claude Code, Gemini CLI, Codex CLI) for use by any MCP client",
5
5
  "type": "module",
6
6
  "bin": {
package/server.js CHANGED
@@ -18,7 +18,7 @@ const VERSION = JSON.parse(
18
18
  readFileSync(join(__dirname, "package.json"), "utf8"),
19
19
  ).version;
20
20
 
21
- const DEFAULT_TIMEOUT_MS = 30_000;
21
+ const DEFAULT_TIMEOUT_MS = 300_000;
22
22
  const MAX_BUFFER_BYTES = 10 * 1024 * 1024;
23
23
 
24
24
  // ---------------------------------------------------------------------------