You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sources/platform/integrations/ai/langflow.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,9 @@ This guide will demonstrate two different ways to use Apify Actors with Langflow
29
29
30
30
### Prerequisites
31
31
32
-
-**Apify API token**: To use Apify Actors in Langflow, you need an Apify API token. If you don't have one, you can learn how to obtain it in the [Apify documentation](https://docs.apify.com/platform/integrations/api).
32
+
-**Apify API token**: To use Apify Actors in Langflow, you need an Apify API token. If you don't have one, you can learn how to get it in the [Apify documentation](https://docs.apify.com/platform/integrations/api).
33
33
34
-
-**OpenAI API key**: In order to work with agents in Langflow, you need an OpenAI API key. If you don't have one, you can get it from the [OpenAI platform](https://platform.openai.com/account/api-keys).
34
+
-**OpenAI API key**: To work with agents in Langflow, you need an OpenAI API key. If you don't have one, you can get it from the [OpenAI platform](https://platform.openai.com/account/api-keys).
35
35
36
36
#### Langflow
37
37
@@ -41,13 +41,13 @@ Langflow can either be installed locally or used in the cloud. The cloud version
41
41
42
42
:::
43
43
44
-
First, we need to install the Langflow platform using python package and project manager [uv](https://docs.astral.sh/uv/):
44
+
First, you need to install the Langflow platform using python package and project manager [uv](https://docs.astral.sh/uv/):
45
45
46
46
```bash
47
47
uv pip install langflow
48
48
```
49
49
50
-
After successfully installing Langflow, we can start the platform:
50
+
After successfully installing Langflow, you can start the platform:
51
51
52
52
```bash
53
53
uv run langflow run
@@ -62,26 +62,26 @@ When the platform is started, open the Langflow UI using `http://127.0.0.1:7860`
62
62
On the Langflow welcome screen, click the **New Flow** button and then create **Blank Flow**:
Next, we need to configure the Apify Actors components. First, input your API token (learn how to get it at [Integrations](https://docs.apify.com/platform/integrations/api)).
73
+
Next, you need to configure the Apify Actors components. First, input your API token (learn how to get it at [Integrations](https://docs.apify.com/platform/integrations/api)).
74
74
Then, set the Actor ID of the component to `apify/rag-web-browser` to use the [RAG Web Browser](https://apify.com/apify/rag-web-browser).
75
75
Set the **Run input** field to pass arguments to the Actor run, allowing it to search Google with the query `"what is monero?"` (full Actor input schema can be found in the [RAG Web Browser input schema](https://apify.com/apify/rag-web-browser/input-schema)):
76
76
77
77
```json
78
78
{"query": "what is monero?", "maxResults": 3}
79
79
```
80
80
81
-
Now, we can run the component by clicking the **Run** button.
81
+
Now, you can run the component by clicking the **Run** button.
Now that we understand how to call Apify Actors, let's build a practical example where we search for a company's social media profiles and extract data from them.
99
+
Now that you understand how to call Apify Actors, let's build a practical example where you search for a company's social media profiles and extract data from them.
100
100
101
101
### Building a flow to search for a company's social media profiles
Copy file name to clipboardExpand all lines: sources/platform/integrations/ai/mcp.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -178,7 +178,10 @@ For example, to enable only the `runs` and `storage` tools, you can use:
178
178
https://mcp.apify.com/?tools=runs,storage
179
179
```
180
180
181
-
The server will expose all `Actor discovery and management tools`, as well as `runs` and `storage`.
181
+
The server will expose all _Actor discovery and management tools_, as well as `runs` and `storage`.
182
+
The list of tools you can enable/disable is as follows: `docs`, `runs`, `storage`, and `preview`.
183
+
184
+
182
185
183
186
### Configure STDIO server using CLI arguments
184
187
@@ -189,11 +192,11 @@ For example, to enable only the `runs` and `storage` tools, you can run:
189
192
npx @apify/actors-mcp-server --tools runs,storage
190
193
```
191
194
192
-
## Dynamic Actor tooling
195
+
## Dynamic discovery of Actors
193
196
194
197
One of the powerful features of MCP with Apify is **dynamic Actor tooling** – the ability for an AI agent to find new tools (Actors) as needed and incorporate them.
195
198
196
-
Supported dynamic tool operations (enebled by default):
199
+
Supported dynamic tool operations (enabled by default):
197
200
198
201
-`search-actors`: Find available Actors by keyword or category.
199
202
-`get-actor-details`: View details and usage information for a specific Actor.
@@ -222,3 +225,4 @@ The Apify MCP server has a rate limit of _30 requests per second_ per user. If y
222
225
-[Apify Actors MCP Server](https://apify.com/apify/actors-mcp-server): The README for the Apify MCP Server actor (available on Apify Store as `apify/actors-mcp-server`) provides technical details on implementation and advanced usage.
223
226
-[Apify Tester MCP Client](https://apify.com/jiri.spilka/tester-mcp-client): A specialized client actor (`jiri.spilka/tester-mcp-client`) that you can run to simulate an AI agent in your browser. Useful for testing your setup with a chat UI.
224
227
-[How to use MCP with Apify Actors](https://blog.apify.com/how-to-use-mcp/): Learn how to expose over 5,000 Apify Actors to AI agents with Claude and LangGraph, and configure MCP clients and servers.
228
+
-[Apify MCP Server Tutorial](https://www.youtube.com/watch?v=BKu8H91uCTg): Integrate 5,000+ Apify Actors and Agents with Claude
0 commit comments