Skip to content

Commit 78fba9e

Browse files
authored
feat: changed APIFY_MCP_PROXY_URL to ACTOR_MCP_PROXY_URL (#674)
Based on this discussion in Slack: https://apify.slack.com/archives/C0AERKHH8AV/p1785147014865919 There will be one more PR to worker that will actually use the constant, and one to docs. And one to the whitepaper: https://github.com/apify/actor-whitepaper
1 parent a45f53b commit 78fba9e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

packages/consts/src/consts.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,6 @@ export const APIFY_ENV_VARS = {
293293
PROXY_PASSWORD: 'APIFY_PROXY_PASSWORD',
294294
PROXY_PORT: 'APIFY_PROXY_PORT',
295295
PROXY_STATUS_URL: 'APIFY_PROXY_STATUS_URL',
296-
MCP_PROXY_URL: 'APIFY_MCP_PROXY_URL',
297296
PURGE_ON_START: 'APIFY_PURGE_ON_START',
298297
SDK_LATEST_VERSION: 'APIFY_SDK_LATEST_VERSION',
299298
SYSTEM_INFO_INTERVAL_MILLIS: 'APIFY_SYSTEM_INFO_INTERVAL_MILLIS',
@@ -323,8 +322,12 @@ export const APIFY_ENV_VARS = {
323322
TIMEOUT_AT: 'APIFY_TIMEOUT_AT',
324323

325324
// Deprecated, keep them for backward compatibility:
325+
/** @deprecated */
326326
ACT_ID: 'APIFY_ACT_ID',
327+
/** @deprecated */
327328
ACT_RUN_ID: 'APIFY_ACT_RUN_ID',
329+
/** @deprecated */
330+
MCP_PROXY_URL: 'APIFY_MCP_PROXY_URL',
328331
} as const;
329332

330333
/**
@@ -350,6 +353,7 @@ export const ACTOR_ENV_VARS = {
350353
INPUT_KEY: 'ACTOR_INPUT_KEY',
351354
MAX_PAID_DATASET_ITEMS: 'ACTOR_MAX_PAID_DATASET_ITEMS',
352355
MAX_TOTAL_CHARGE_USD: 'ACTOR_MAX_TOTAL_CHARGE_USD',
356+
MCP_PROXY_URL: 'ACTOR_MCP_PROXY_URL',
353357
MEMORY_MBYTES: 'ACTOR_MEMORY_MBYTES',
354358
RESTART_ON_ERROR: 'ACTOR_RESTART_ON_ERROR',
355359
PERMISSION_LEVEL: 'ACTOR_PERMISSION_LEVEL',

0 commit comments

Comments
 (0)