nexarch 0.8.1 → 0.8.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/dist/lib/mcp.js +1 -1
- package/package.json +1 -1
package/dist/lib/mcp.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import https from "https";
|
|
2
2
|
import { requireCredentials } from "./credentials.js";
|
|
3
3
|
const MCP_GATEWAY_URL = "https://mcp.nexarch.ai";
|
|
4
|
-
const REQUEST_TIMEOUT_MS =
|
|
4
|
+
const REQUEST_TIMEOUT_MS = 90 * 1000;
|
|
5
5
|
async function callMcpRpc(method, params = {}, options = {}) {
|
|
6
6
|
const creds = requireCredentials();
|
|
7
7
|
const companyId = options.companyId ?? creds.companyId;
|