diff --git a/docs/en/enterprise/features/tools-and-integrations.mdx b/docs/en/enterprise/features/tools-and-integrations.mdx
index 92609b997..db2cec5ce 100644
--- a/docs/en/enterprise/features/tools-and-integrations.mdx
+++ b/docs/en/enterprise/features/tools-and-integrations.mdx
@@ -57,6 +57,22 @@ Tools & Integrations is the central hub for connecting third‑party apps and ma
uv add crewai-tools
```
+ ### Environment Variable Setup
+
+
+ To use integrations with `Agent(apps=[])`, you must set the `CREWAI_PLATFORM_INTEGRATION_TOKEN` environment variable with your Enterprise Token.
+
+
+ ```bash
+ export CREWAI_PLATFORM_INTEGRATION_TOKEN="your_enterprise_token"
+ ```
+
+ Or add it to your `.env` file:
+
+ ```
+ CREWAI_PLATFORM_INTEGRATION_TOKEN=your_enterprise_token
+ ```
+
### Usage Example
diff --git a/docs/ko/enterprise/features/tools-and-integrations.mdx b/docs/ko/enterprise/features/tools-and-integrations.mdx
index d0a87ff0e..23085ec31 100644
--- a/docs/ko/enterprise/features/tools-and-integrations.mdx
+++ b/docs/ko/enterprise/features/tools-and-integrations.mdx
@@ -57,6 +57,22 @@ mode: "wide"
uv add crewai-tools
```
+ ### 환경 변수 설정
+
+
+ `Agent(apps=[])`와 함께 통합을 사용하려면 Enterprise Token으로 `CREWAI_PLATFORM_INTEGRATION_TOKEN` 환경 변수를 설정해야 합니다.
+
+
+ ```bash
+ export CREWAI_PLATFORM_INTEGRATION_TOKEN="your_enterprise_token"
+ ```
+
+ 또는 `.env` 파일에 추가하세요:
+
+ ```
+ CREWAI_PLATFORM_INTEGRATION_TOKEN=your_enterprise_token
+ ```
+
### 사용 예시
diff --git a/docs/pt-BR/enterprise/features/tools-and-integrations.mdx b/docs/pt-BR/enterprise/features/tools-and-integrations.mdx
index e7c371b65..5d1d00de8 100644
--- a/docs/pt-BR/enterprise/features/tools-and-integrations.mdx
+++ b/docs/pt-BR/enterprise/features/tools-and-integrations.mdx
@@ -57,6 +57,22 @@ Ferramentas & Integrações é o hub central para conectar aplicações de terce
uv add crewai-tools
```
+ ### Configuração de variável de ambiente
+
+
+ Para usar integrações com `Agent(apps=[])`, você deve definir a variável de ambiente `CREWAI_PLATFORM_INTEGRATION_TOKEN` com seu Enterprise Token.
+
+
+ ```bash
+ export CREWAI_PLATFORM_INTEGRATION_TOKEN="seu_enterprise_token"
+ ```
+
+ Ou adicione ao seu arquivo `.env`:
+
+ ```
+ CREWAI_PLATFORM_INTEGRATION_TOKEN=seu_enterprise_token
+ ```
+
### Exemplo de uso