Skip to content

Commit b632763

Browse files
committed
Update docs
1 parent c710de2 commit b632763

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

README.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ The server can be used in two ways:
1111

1212
The MCP Server Actor allows an AI assistant to:
1313
- Use any [Apify Actor](https://apify.com/store) as a tool to perform a specific task.For example it can:
14-
- [Facebook Posts Scraper](https://apify.com/apify/facebook-posts-scraper) extract data from Facebook posts from one or multiple Facebook pages/profiles
15-
- [Google Maps Email Extractor](https://apify.com/lukaskrivka/google-maps-with-contact-details) Extract Google Maps contact details
16-
- [Google Search Results Scraper](https://apify.com/apify/google-search-scraper) Scrape Google Search Engine Results Pages (SERPs)
14+
- [Facebook Posts Scraper](https://apify.com/apify/facebook-posts-scraper) extract data from Facebook posts from multiple pages/profiles
15+
- [Google Maps Email Extractor](https://apify.com/lukaskrivka/google-maps-with-contact-details) extract Google Maps contact details
16+
- [Google Search Results Scraper](https://apify.com/apify/google-search-scraper) scrape Google Search Engine Results Pages (SERPs)
1717
- [Instagram Scraper](https://apify.com/apify/instagram-scraper) scrape Instagram posts, profiles, places, hashtags, photos, and comments
1818
- [RAG Web Browser](https://apify.com/apify/web-scraper) perform web search, scrape the top N URLs from the results, and return content
1919

@@ -24,7 +24,7 @@ When you have Actors integrated with the MCP server, you can ask:
2424
- Search web and summarize recent trends about AI Agents
2525
- Find top 10 best Italian restaurants in San Francisco
2626
- Find and analyze Instagram profile of The Rock
27-
- Provide a step-by-step guide on how to use the Model Context Protocol. Provide source URLs with the answers
27+
- Provide a step-by-step guide on using the Model Context Protocol with source URLs.
2828
- What Apify Actors I can use?
2929

3030
## 🔄 What is model context protocol?
@@ -50,21 +50,22 @@ By default, the server is pre-configured with the Actors specified below, but it
5050
'lukaskrivka/google-maps-with-contact-details',
5151
'voyager/booking-scraper'
5252
```
53-
The MCP server loads the Actor input schema (input parameters) and creates MCP tools corresponding to the Actors.
54-
See this example of input parameters for the [RAG Web Browser](https://apify.com/apify/rag-web-browser/input-schema).
53+
The MCP server loads the Actor input schema and creates MCP tools corresponding to the Actors.
54+
See this example of input schema for the [RAG Web Browser](https://apify.com/apify/rag-web-browser/input-schema).
5555

5656
The tool name must always be the full Actor name, such as `apify/rag-web-browser`.
5757
The arguments for an MCP tool represent the input parameters of the Actor.
58-
For example, for the `apify/rag-web-browser` tool, the arguments are:
58+
For example, for the `apify/rag-web-browser` Actor, the arguments are:
5959

6060
```json
6161
{
6262
"query": "restaurants in San Francisco",
6363
"maxResults": 3
6464
}
6565
```
66+
You don't need to specify the input parameters or which Actor to call, everything is managed by an LLM.
6667
When a tool is called, the arguments are automatically passed to the Actor by the LLM.
67-
Please refer to the specific Actor's documentation for a list of available arguments.
68+
You can refer to the specific Actor's documentation for a list of available arguments.
6869

6970
### Prompt & Resources
7071

@@ -82,9 +83,11 @@ or as a **local server** running on your machine.
8283

8384
The Actor runs in [**Standby mode**](https://docs.apify.com/platform/actors/running/standby) with an HTTP web server that receives and processes requests.
8485

85-
1. **Start server with default Actors**. To use the Apify MCP Server ith set of default Actors,
86+
1. **Start server with default Actors**. To use the Apify MCP Server with set of default Actors,
8687
send an HTTP GET request with your [Apify API token](https://console.apify.com/settings/integrations) to the following URL.
87-
88+
```
89+
https://mcp-server.apify.actor?token=<APIFY_API_TOKEN>&actors=junglee/free-amazon-product-scraper,junglee/free-amazon-product-scraper
90+
```
8891
2. **Initiate Server-Sent-Events (SSE)** by sending a GET request to the following URL:
8992
```
9093
https://mcp-server.apify.actor/sse?token=<APIFY_API_TOKEN>

0 commit comments

Comments
 (0)