scrapeless-mcp-server 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
-
# Scrapeless
|
|
3
|
+
# Scrapeless MCP Server
|
|
4
4
|
|
|
5
5
|
Model Context Protocol (MCP) is an open protocol that enables seamless integration between LLM applications and external data sources and tools. MCP provides a standardized way to connect LLM with the required context, helping you efficiently enhance chat interfaces, build AI-driven IDEs, or create custom AI workflows.
|
|
6
6
|
|
|
@@ -74,7 +74,7 @@ This project provides several MCP servers that enable AI assistants like Claude
|
|
|
74
74
|
- `scrape_screenshot`
|
|
75
75
|
Capture a high-quality screenshot of any webpage.
|
|
76
76
|
|
|
77
|
-
###
|
|
77
|
+
### Deep SerpAPI Tools
|
|
78
78
|
|
|
79
79
|
- `google_search`
|
|
80
80
|
universal information search engine.retrieves any data information.explanatory queries (why, how).comparative analysis requests.
|
|
@@ -102,7 +102,7 @@ This project provides several MCP servers that enable AI assistants like Claude
|
|
|
102
102
|
```json
|
|
103
103
|
{
|
|
104
104
|
"mcpServers": {
|
|
105
|
-
"
|
|
105
|
+
"Scrapeless MCP Server": {
|
|
106
106
|
"command": "npx",
|
|
107
107
|
"args": ["-y", "scrapeless-mcp-server"],
|
|
108
108
|
"env": {
|
|
@@ -126,7 +126,7 @@ npx scrapeless-mcp-server --mode=streamable_http --SCRAPELESS_KEY=YOUR_SCRAPELES
|
|
|
126
126
|
```json
|
|
127
127
|
{
|
|
128
128
|
"mcpServers": {
|
|
129
|
-
"
|
|
129
|
+
"Scrapeless MCP Server": {
|
|
130
130
|
"type": "streamable-http",
|
|
131
131
|
"url": "http://127.0.0.1:9593/mcp",
|
|
132
132
|
"disabled": false
|
|
@@ -139,11 +139,37 @@ npx scrapeless-mcp-server --mode=streamable_http --SCRAPELESS_KEY=YOUR_SCRAPELES
|
|
|
139
139
|
|
|
140
140
|
Here are some examples of how to use these servers with Claude Desktop:
|
|
141
141
|
|
|
142
|
-
###
|
|
142
|
+
### browser
|
|
143
143
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
144
|
+
Use a browser to visit chatgpt.com, search for "What's the weather like today?", and summarize the results.
|
|
145
|
+
|
|
146
|
+
### scrape_html
|
|
147
|
+
|
|
148
|
+
Scrape the html content of scrapeless.com page
|
|
149
|
+
|
|
150
|
+
### scrape_markdown
|
|
151
|
+
|
|
152
|
+
Scrape the markdown content of scrapeless.com page
|
|
153
|
+
|
|
154
|
+
### scrape_screenshot
|
|
155
|
+
|
|
156
|
+
Get screenshots of scrapeless.com
|
|
157
|
+
|
|
158
|
+
### google_flights
|
|
159
|
+
|
|
160
|
+
Please help me with my flight ticket from Chicago to New York on November 20, 2025
|
|
161
|
+
|
|
162
|
+
### google_scholar
|
|
163
|
+
|
|
164
|
+
Find papers by "Yoshua Bengio" on deep learning
|
|
165
|
+
|
|
166
|
+
### google_search
|
|
167
|
+
|
|
168
|
+
Search scrapeless by google search
|
|
169
|
+
|
|
170
|
+
### google_trends
|
|
171
|
+
|
|
172
|
+
Find the search interest for "AI" over the last year
|
|
147
173
|
|
|
148
174
|
## Installation
|
|
149
175
|
|