Skip to content

Commit 31da018

Browse files
committed
fix: in langflow.md, change we -> you, handle review comments
1 parent c2b1c85 commit 31da018

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

sources/platform/integrations/ai/langflow.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ This guide will demonstrate two different ways to use Apify Actors with Langflow
2929

3030
### Prerequisites
3131

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).
3333

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).
3535

3636
#### Langflow
3737

@@ -41,13 +41,13 @@ Langflow can either be installed locally or used in the cloud. The cloud version
4141

4242
:::
4343

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/):
4545

4646
```bash
4747
uv pip install langflow
4848
```
4949

50-
After successfully installing Langflow, we can start the platform:
50+
After successfully installing Langflow, you can start the platform:
5151

5252
```bash
5353
uv run langflow run
@@ -62,26 +62,26 @@ When the platform is started, open the Langflow UI using `http://127.0.0.1:7860`
6262
On the Langflow welcome screen, click the **New Flow** button and then create **Blank Flow**:
6363
![New Flow screen - Blank Flow](../images/langflow/new_blank_flow.png)
6464

65-
Now, we can start building our flow.
65+
Now, you can start building your flow.
6666

6767
### Calling Apify Actors in Langflow
6868

69-
To call Apify Actors in Langflow, we need to add the **Apify Actors** component to the flow.
69+
To call Apify Actors in Langflow, you need to add the **Apify Actors** component to the flow.
7070
From the bundle menu, add **Apify Actors** component:
7171
![Flow - Add Apify Actors](../images/langflow/bundles_apify.png)
7272

73-
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)).
7474
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).
7575
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)):
7676

7777
```json
7878
{"query": "what is monero?", "maxResults": 3}
7979
```
8080

81-
Now, we can run the component by clicking the **Run** button.
81+
Now, you can run the component by clicking the **Run** button.
8282
![Flow - Apify Actors Run](../images/langflow/apify_actors_run.png)
8383

84-
Once the run is finished, we can view the output by clicking the **Output** button.
84+
Once the run is finished, you can view the output by clicking the **Output** button.
8585
![Flow - Apify Actors Output](../images/langflow/apify_actors_output.png)
8686

8787
The output should look similar to this:
@@ -96,7 +96,7 @@ When you run the component again, the output contains only the `markdown` and fl
9696

9797
![Flow - Apify Actors Output Filtered](../images/langflow/apify_actors_output_data_filtered.png)
9898

99-
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.
100100

101101
### Building a flow to search for a company's social media profiles
102102

sources/platform/integrations/ai/mcp.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,10 @@ For example, to enable only the `runs` and `storage` tools, you can use:
178178
https://mcp.apify.com/?tools=runs,storage
179179
```
180180

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+
182185

183186
### Configure STDIO server using CLI arguments
184187

@@ -189,11 +192,11 @@ For example, to enable only the `runs` and `storage` tools, you can run:
189192
npx @apify/actors-mcp-server --tools runs,storage
190193
```
191194

192-
## Dynamic Actor tooling
195+
## Dynamic discovery of Actors
193196

194197
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.
195198

196-
Supported dynamic tool operations (enebled by default):
199+
Supported dynamic tool operations (enabled by default):
197200

198201
- `search-actors`: Find available Actors by keyword or category.
199202
- `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
222225
- [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.
223226
- [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.
224227
- [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

Comments
 (0)