@@ -18,13 +18,19 @@ The RAG Web Browser Actor allows an AI assistant to:
18
18
19
19
### Tools
20
20
21
- The server implements a web browser tool:
22
- - ` web-browser ` : query Google Search, scrape the top N URLs from the results, and returns their cleaned content as Markdown.
23
- - Parameters:
24
- - ` query ` : Search term or URL
25
- - ` max_results ` : Maximum number of search results to scrape
21
+ - ** search** : Query Google Search, scrape the top N URLs from the results, and returns their cleaned content as Markdown.
22
+ - Arguments:
23
+ - ` query ` (string, required): Search term or URL
24
+ - ` max_results ` (number, optional): Maximum number of search results to scrape (default: 1)
26
25
27
- ### Resources and Prompts
26
+ ### Prompts
27
+
28
+ - * search* : Search phrase or a URL at Google and return crawled web pages as text or Markdown
29
+ - Arguments:
30
+ - ` query ` (string, required): Search term or URL
31
+ - ` max_results ` (number, optional): Maximum number of search results to scrape (default: 1)
32
+
33
+ ### Resources
28
34
29
35
The server does not provide any resources and prompts.
30
36
@@ -53,7 +59,7 @@ Configure Claude Desktop to recognize the MCP server.
53
59
"mcp-server-rag-web-browser": {
54
60
"command": "npx",
55
61
"args": [
56
- "/path/to/mcp-server-rag-web-browser/build/index.js"
62
+ "/path/to/mcp-server-rag-web-browser/build/index.js",
57
63
]
58
64
"env": {
59
65
"APIFY-API-TOKEN": "your-apify-api-token"
@@ -102,7 +108,7 @@ To test the server locally, you can use `example_client`:
102
108
node build/example_client.js
103
109
```
104
110
105
- The script will start the MCP server, fetch available tools, and then call the ` web-browser ` tool with a query.
111
+ The script will start the MCP server, fetch available tools, and then call the ` search ` tool with a query.
106
112
107
113
### Debugging
108
114
0 commit comments