Olostep MCP Server
NPM · OLOSTEP-MCP · SCANNED AUG 3
Search, scrape, and crawl the web for AI agents. Batch scraping and answers with citations.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (102 of 103), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (102 of 103), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
- Repository check failed: no source repository is declared. See how to fix → View diagnostics → Fail
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (ISC).Pass
- Actively maintained (last published 31 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability60
- AI-judged instruction clarity (good).Pass
- Context-footprint check failed: tool/resource definitions use about 1838 tokens (~183/item across 10 items; 10 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · olostep-mcp
claude mcp add olostep-olostep-mcp-server -- npx -y olostep-mcp
codex mcp add olostep-olostep-mcp-server -- npx -y olostep-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"olostep-olostep-mcp-server": {
"type": "local",
"command": [
"npx",
"-y",
"olostep-mcp"
],
"enabled": true
}
}
} openclaw mcp add olostep-olostep-mcp-server --command npx --arg -y --arg olostep-mcp
mcp_servers:
olostep-olostep-mcp-server:
command: "npx"
args: ["-y", "olostep-mcp"] {
"mcpServers": {
"olostep-olostep-mcp-server": {
"command": "npx",
"args": [
"-y",
"olostep-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +44
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- Security disclosure: unverified → fail ▼ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Schema quality: unverified → good ▲ functional
- Licence: ISC functional
- 1 Aug 26 +13
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 31 Jul 26 −19
- Malware scan: pass → unverified ▼ security
- Dependency health: partial → unverified ▼ functional
- 29 Jul 26 −18
- Tool coverage: 100 → unverified ▼ functional
- Dependency health: unverified → partial ▲ functional
- First check of Schema quality: unverified functional
- 27 Jul 26 37
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 102 packages
102 packages in the resolved dependency tree · 102 deprecated · 32 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
answers ~168
Answer a factual question using web search, optionally shaped into a flat JSON object of fields (returned with sources and citations). Best for a bounded, factual answer (e.g. a company's founding year, a product's current price). It is NOT reliable for enumerating a live list from a page (e.g. 'the latest N blog posts with titles and dates'). For that, use create_map or get_webpage_content on the page and read the results instead.
| Name | Type | Req | Description |
|---|---|---|---|
| json | — | — | Optional shape for the answer: a flat JSON object of the fields you want. Example: { "book_title": "", "author": "", "release_date": "" }. Keep it flat. Deeply nested shapes or long lists are unrelia… |
| task | string | yes | Question or task to answer using web data. |
No output schema declared.
No examples provided.
batch_scrape_urls ~334
Scrape a SPECIFIC, KNOWN list of URLs (typically from different domains). **Do NOT use this for crawling a website** - if the user wants to scrape a whole site or 'crawl' a domain, use `create_crawl` instead. Use this only when you already have an explicit list of URLs to scrape (e.g., user provides a CSV of URLs, or you need to scrape unrelated pages). Returns a batch_id immediately. Use `get_batch_results` with the batch_id to fetch the scraped content once the batch completes (~5–8 min). Set `wait_for_completion_seconds` to poll automatically.
| Name | Type | Req | Description |
|---|---|---|---|
| country | string | — | Optional country code for location-specific scraping. |
| output_format | string | — | Choose format for all URLs. Default: "markdown". |
| parser | string | — | Optional parser ID for specialized extraction (e.g. @olostep/google-search). |
| urls | array | — | Array of URLs to scrape — plain URL strings, or objects with "url" and optional "custom_id". |
| urls_to_scrape | array | — | Alias for `urls`. |
| wait_before_scraping | integer | — | Wait time in milliseconds before scraping each URL. |
| wait_for_completion_seconds | integer | — | Seconds to wait for batch completion. If >0, polls every 10s until done or timeout, then returns status. Use 0 to return immediately with batch_id (then call get_batch_results later). Recommended: 60… |
No output schema declared.
No examples provided.
create_crawl ~270
**PREFERRED tool for crawling a website.** Use this whenever the user says 'crawl', 'scrape the whole site', 'get all pages from a site', or wants multiple pages from a single domain. This is the CORRECT tool for any whole-site scraping task. **Do NOT use `batch_scrape_urls` for crawling** - that tool is only for when you already have a specific list of unrelated URLs from different domains. Starts an ASYNC crawl that autonomously discovers and scrapes pages by following links from a start URL. Returns a crawl_id - the crawl runs in the background. You MUST then call `get_crawl_results` with the returned crawl_id to poll status and retrieve the scraped pages. Do NOT call `get_batch_results` with a crawl_id - crawls and batches are separate resources.
| Name | Type | Req | Description |
|---|---|---|---|
| country | string | — | Optional country code for location-specific crawling. |
| max_pages | integer | — | Maximum number of pages to crawl. Set to 1 to scrape only the start URL. |
| output_format | string | — | Format for scraped content. Default: "markdown". |
| parser | string | — | Optional parser ID for specialized content extraction. |
| start_url | string | — | Alias for `url`. |
| url | string | — | Starting URL for the crawl. |
No output schema declared.
No examples provided.
create_map ~206
Get a LIST of URLs on a website (URL discovery only — does NOT scrape content). Use when the user wants a list of links: 'show me all URLs on this site', 'map this website', or when you want to surface candidate URLs to the user before scraping a subset. Prefer `create_crawl` if the goal is to scrape the whole site — it discovers AND scrapes in one workflow. Use this only when the URL list itself is the deliverable.
| Name | Type | Req | Description |
|---|---|---|---|
| exclude_url_patterns | array | — | Optional glob patterns to exclude (e.g., "/admin/**"). |
| include_url_patterns | array | — | Optional glob patterns to include (e.g., "/blog/**"). |
| search_query | string | — | Optional search query to filter URLs (e.g., "blog"). |
| top_n | integer | — | Optional limit for number of URLs returned. |
| url | string | — | Website URL to extract links from. |
| website_url | string | — | Alias for `url`. |
No output schema declared.
No examples provided.
get_batch_results ~126
Retrieve the status and scraped content for a batch job. Pass the batch_id returned by batch_scrape_urls. If the batch is completed, returns the scraped content for each URL. If still in_progress, returns the current status so you can call again later.
| Name | Type | Req | Description |
|---|---|---|---|
| batch_id | string | yes | The batch_id (or id) returned from batch_scrape_urls. |
| formats | array | — | Content formats to retrieve per URL. Default: ["markdown"]. |
| items_limit | integer | — | Max number of items to retrieve content for (1-100). Default: 20. |
No output schema declared.
No examples provided.
get_crawl_results ~207
Retrieve the status and scraped pages for a crawl job. Pass the crawl_id returned by create_crawl. If the crawl is still in_progress, returns the current status so you can call again later (poll every ~10 seconds). Once completed, returns the list of discovered pages with their scraped content in the requested formats. This is the REQUIRED companion to create_crawl — create_crawl only kicks off the async job, this tool is how you actually get the content.
| Name | Type | Req | Description |
|---|---|---|---|
| crawl_id | string | yes | The crawl_id (or id) returned from create_crawl. |
| cursor | integer | — | Pagination cursor for list-pages. Default: 0 (first page). |
| formats | array | — | Content formats to retrieve per page. Default: ["markdown"]. |
| items_limit | integer | — | Max number of pages to retrieve content for (1-100). Default: 20. |
| search_query | string | — | Optional filter to rank/select pages by relevance to a query. |
No output schema declared.
No examples provided.
get_webpage_content ~90
Retrieve content of a webpage in markdown
| Name | Type | Req | Description |
|---|---|---|---|
| country | string | — | Residential country to load the request from (e.g., US, CA, GB). Optional. |
| url | string | — | The URL of the webpage to scrape. |
| url_to_scrape | string | — | Alias for `url`. |
| wait_before_scraping | integer | — | Time to wait in milliseconds before starting the scrape. |
No output schema declared.
No examples provided.
get_website_urls ~107
Search and retrieve relevant URLs from a website (URL discovery only - does NOT scrape content). Use this only when the user wants a *filtered list of links* matching a search query. **Do NOT use this as a precursor to scraping** - if the user wants to scrape/crawl a site, use `create_crawl` directly.
| Name | Type | Req | Description |
|---|---|---|---|
| search_query | string | yes | The search query to sort URLs by. |
| url | string | yes | The URL of the website to map. |
No output schema declared.
No examples provided.
scrape_website ~274
Extract content from a single URL. Supports multiple formats and JavaScript rendering.
| Name | Type | Req | Description |
|---|---|---|---|
| country | string | — | Optional country code (e.g., US, GB, CA) for location-specific scraping. |
| llm_extract | object | — | Defines what to pull when output_format is "json". Provide a `schema` (a JSON-schema object of the fields you want, e.g. { "type": "object", "properties": { "title": { "type": "string" } } }) and/or… |
| output_format | string | — | Output format. "markdown" (default), "html", and "text" need no extra config. "json" returns STRUCTURED data and requires either a `parser` OR an `llm_extract` schema describing the fields to pull. D… |
| parser | string | — | Optional parser ID for specialized extraction (e.g., "@olostep/amazon-product"). |
| url | string | — | The URL of the website you want to scrape. |
| url_to_scrape | string | — | Alias for `url`. |
| wait_before_scraping | integer | — | Wait time in milliseconds before scraping (0-10000). Useful for dynamic content. |
No output schema declared.
No examples provided.
search_web ~56
Search the web for a given query and return structured results (non-AI, parser-based).
| Name | Type | Req | Description |
|---|---|---|---|
| country | string | — | Optional country code for localized results (e.g., US, GB). |
| query | string | yes | Search query |
No output schema declared.
No examples provided.