@@ -31,24 +31,36 @@ This tutorial covers how to add the [Apify MCP server](https://mcp.apify.com) as
31
31
32
32
<Tabs groupId =" interface " >
33
33
<TabItem value =" ui " label =" Goose Desktop " default >
34
- 1. Click the <PanelLeft className="inline" size={16} /> button in the top-left to open the sidebar
35
- 2. Click `Extensions`
36
- 3. Click `Add custom extension`
37
- 4. On the `Add custom extension` modal, enter the following:
34
+ 1. Obtain a [Apify Token](https://console.apify.com/settings/integrations)
35
+ 2. Click the <PanelLeft className="inline" size={16} /> button in the top-left to open the sidebar
36
+ 3. Click `Extensions`
37
+ 4. Click `Add custom extension`
38
+ 5. On the `Add custom extension` modal, enter the following:
38
39
- **Extension Name**: Apify
39
40
- **Type**: Streamable HTTP
40
- - **Endpoint**: `https://mcp.apify.com`
41
- 5. Click `+ Add` to save the header
42
- 6. Click `Add Extension` to save the extension
43
- 7. You will be taken to the OAuth screen
44
- 8. Navigate to the chat
41
+ - **Endpoint**: `https://mcp.apify.com`
42
+ - **Request Headers**:
43
+ - **Header name**: `Authorization`
44
+ - **Value**: `Bearer <YOUR_APIFY_TOKEN>`
45
+ 6. Click `+ Add` to save the header
46
+ 7. Click `Add Extension` to save the extension
47
+ 8. You will be taken to the OAuth screen
48
+ 9. Navigate to the chat
45
49
</TabItem >
46
50
<TabItem value =" cli " label =" Goose CLI " default >
47
51
<CLIExtensionInstructions
48
52
name="apify-mcp"
49
53
type="http"
50
54
url="https://mcp.apify.com"
51
55
timeout={300}
56
+ envVars={[
57
+ { key: "Authorization", value: "Bearer apify_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" }
58
+ ]}
59
+ infoNote={
60
+ <>
61
+ Obtain your <a href="https://console.apify.com/settings/integrations" target="_blank" rel="noopener noreferrer">Apify Token</a> and paste it in
62
+ </>
63
+ }
52
64
/>
53
65
</TabItem >
54
66
</Tabs >
0 commit comments