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: README.md
+13-10Lines changed: 13 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@ The server can be used in two ways:
11
11
12
12
The MCP Server Actor allows an AI assistant to:
13
13
- 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)
-[RAG Web Browser](https://apify.com/apify/web-scraper) perform web search, scrape the top N URLs from the results, and return content
19
19
@@ -24,7 +24,7 @@ When you have Actors integrated with the MCP server, you can ask:
24
24
- Search web and summarize recent trends about AI Agents
25
25
- Find top 10 best Italian restaurants in San Francisco
26
26
- 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.
28
28
- What Apify Actors I can use?
29
29
30
30
## 🔄 What is model context protocol?
@@ -50,21 +50,22 @@ By default, the server is pre-configured with the Actors specified below, but it
50
50
'lukaskrivka/google-maps-with-contact-details',
51
51
'voyager/booking-scraper'
52
52
```
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).
55
55
56
56
The tool name must always be the full Actor name, such as `apify/rag-web-browser`.
57
57
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:
59
59
60
60
```json
61
61
{
62
62
"query": "restaurants in San Francisco",
63
63
"maxResults": 3
64
64
}
65
65
```
66
+
You don't need to specify the input parameters or which Actor to call, everything is managed by an LLM.
66
67
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.
68
69
69
70
### Prompt & Resources
70
71
@@ -82,9 +83,11 @@ or as a **local server** running on your machine.
82
83
83
84
The Actor runs in [**Standby mode**](https://docs.apify.com/platform/actors/running/standby) with an HTTP web server that receives and processes requests.
84
85
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,
86
87
send an HTTP GET request with your [Apify API token](https://console.apify.com/settings/integrations) to the following URL.
0 commit comments