Skip to content

Commit 21832a1

Browse files
committed
feat: token flow
1 parent 0da341a commit 21832a1

File tree

1 file changed

+21
-9
lines changed

1 file changed

+21
-9
lines changed

documentation/docs/mcp/apify-mcp.md

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,36 @@ This tutorial covers how to add the [Apify MCP server](https://mcp.apify.com) as
3131

3232
<Tabs groupId="interface">
3333
<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:
3839
- **Extension Name**: Apify
3940
- **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
4549
</TabItem>
4650
<TabItem value="cli" label="Goose CLI" default>
4751
<CLIExtensionInstructions
4852
name="apify-mcp"
4953
type="http"
5054
url="https://mcp.apify.com"
5155
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+
}
5264
/>
5365
</TabItem>
5466
</Tabs>

0 commit comments

Comments
 (0)