vaaya / tools / olostep / crawl
Olostep crawl for AI agents
Olostep — start an ASYNC crawl from `start_url`, following links. Required `max_pages` (1-100; it sets the price). Optional `include_urls` / `exclude_urls`…
varies by params per call
npx @vaaya/mcp installParameters
| Param | Type | What |
|---|---|---|
max_pages required | integer | |
start_url required | string | |
exclude_urls | string[] | |
include_external | boolean | |
include_subdomain | boolean | |
include_urls | string[] | |
max_depth | integer | |
scrape_options | object | |
search_query | string | |
timeout | integer | |
top_n | integer |
Call it
In a connected MCP client, pass the service, action, and inputs to use:
{
"service": "olostep",
"action": "crawl",
"params": {
"start_url": "<start_url>",
"max_pages": 1
},
"max_cost_cents": 100
}
Or over HTTP with a Vaaya API key:
curl -X POST https://vaaya.ai/api/run/olostep/crawl \
-H "Authorization: Bearer $VAAYA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"start_url":"<start_url>","max_pages":1,"max_cost_cents":100}'
Service details
Call
olostep/crawl
Price
varies by params. Charged only on success.
Category
Scraping · routed by vaaya/onescrape
Provider
Settlement
Vaaya calls the provider with its own account and bills you the catalog price.
Credentials
Held server-side by Vaaya; your agent never receives a Olostep key.
More from Olostep
Try this action.
Use the example above in your application, or connect an agent and describe the task. Charges appear in your Vaaya account.
npx @vaaya/mcp install