We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b15c0 commit 5d1f445Copy full SHA for 5d1f445
src/tools/mcp-apify-client.ts
@@ -1,3 +1,4 @@
1
+
2
import type { ApifyClientOptions } from 'apify';
3
import { ApifyClient as _ApifyClient } from 'apify-client';
4
import type { AxiosRequestConfig } from 'axios';
@@ -20,6 +21,7 @@ export class ApifyClient extends _ApifyClient {
20
21
constructor(options: ApifyClientOptions) {
22
super({
23
...options,
24
+ baseUrl: process.env.MCP_APIFY_BASE_URL || undefined,
25
requestInterceptors: [addUserAgent],
26
});
27
}
0 commit comments