Skip to main content
Glama
mysleekdesigns

CrawlForge MCP Server

Table of Contents

Related MCP server: Crawl4AI MCP

🎯 Why CrawlForge?

  • 30 MCP-native tools — scraping, crawling, search, real Google SERP rank tracking, deep research, an autonomous agent, a unified multi-format scrape, document processing, stealth browsing, and more, callable directly from your AI assistant.

  • Generous free tier — 1,000 credits to start instantly, no credit card. The grant is one-time rather than monthly, and the credits never expire.

  • Local-LLM by defaultextract_with_llm runs against a local Ollama model out of the box: no LLM API key, no per-token cost, and your data never leaves your machine. Cloud (OpenAI/Anthropic) is opt-in.

  • LLM-ready output — clean Markdown, structured JSON (schema-driven), screenshots, links, and metadata from a single fetch.

  • Autonomous agent — describe what you need in natural language; it plans, gathers, and shapes an answer under orchestrator-enforced hard stops (max steps/URLs/wall-clock) — no URLs required.

  • Security-hardened — SSRF protection on every request, a fail-closed backend allow-list, a vetted action allowlist for browser automation, and per-tool credit gating.

  • Works everywhere MCP does — Claude Desktop, Claude Code, Cursor, and any other MCP-enabled client, configured in one command.

📊 CrawlForge vs. alternatives

CrawlForge MCP

Firecrawl

Raw scraping API

Native MCP server

✅ 30 tools

Free tier

✅ 1,000 credits, rollover

Limited

Varies

Self-hosted / local LLM extraction (Ollama)

✅ default, $0/token

Autonomous agent (no URLs needed)

agent

Deep research with source verification

deep_research

Partial

Browser automation / actions

scrape_with_actions

Varies

Stealth / anti-detection engines

✅ Chromium + Camoufox

Add-on

Pre-built site templates

✅ 10 sites

License

MIT

AGPL-3.0

Proprietary

Comparison reflects publicly documented capabilities at time of writing. CrawlForge is MIT-licensed and MCP-first — built to plug straight into AI coding assistants.

🚀 Quick Start (2 Minutes)

1. Install from NPM

npm install -g crawlforge-mcp-server

2. Setup Your API Key (required)

Every tool requires a CrawlForge API key — new accounts get 1,000 free trial credits to start. The recommended path signs you in through the browser, so the key is never pasted into a terminal (a coding agent can run this for you and relay the URL):

crawlforge login

It prints an approval URL; open it, approve, and the key is stored in ~/.crawlforge/config.json. Then run crawlforge init to register the MCP server with your client. Or use the interactive wizard, which also configures your clients:

npx crawlforge-setup

This will:

  • Guide you through getting your free API key

  • Configure your credentials securely

  • Auto-configure Claude Code and Cursor (if installed)

  • Verify your setup is working

Don't have an API key? Get one free at https://www.crawlforge.dev/signup

One-step setup (v4.6.0+): crawlforge init detects your API key, installs the agent skill, and idempotently merges the MCP config stanza into Claude Code, Claude Desktop, and Cursor. Use crawlforge init --all --yes to configure every detected client non-interactively.

3. Configure Your IDE (if not auto-configured)

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "crawlforge": {
      "command": "npx",
      "args": ["-y", "crawlforge-mcp-server"]
    }
  }
}

Location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%/Claude/claude_desktop_config.json

  • Linux: ~/.config/Claude/claude_desktop_config.json

Restart Claude Desktop to activate.

The setup wizard automatically configures Claude Code by adding to ~/.claude.json:

{
  "mcpServers": {
    "crawlforge": {
      "type": "stdio",
      "command": "crawlforge-mcp"
    }
  }
}

After setup, restart Claude Code to activate.

The setup wizard automatically configures Cursor by adding to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "crawlforge": {
      "type": "stdio",
      "command": "crawlforge-mcp"
    }
  }
}

Restart Cursor to activate.

n8n's built-in MCP Client Tool node connects over Streamable HTTP (works on n8n Cloud and self-hosted). Run the server in HTTP mode:

export CRAWLFORGE_API_KEY=your_api_key
npm run start:http    # Streamable HTTP endpoint at http://localhost:10000/mcp

Then point the MCP Client Tool node at http://<host>:10000/mcp with transport HTTP Streamable and a Bearer credential set to the same API key. On self-hosted n8n you can instead use the community n8n-nodes-mcp node over STDIO (npx -y crawlforge-mcp-server).

Full guide: docs/n8n-integration.md

Which launch command? npx -y crawlforge-mcp-server needs no global install and always runs the published version (recommended for Claude Desktop). For a global install (npm i -g crawlforge-mcp-server), use the dedicated crawlforge-mcp bin — it resolves on your PATH, so it survives Node/nvm version switches. The bare crawlforge command still launches the server when an MCP client spawns it over stdio (backward compatibility for configs created before v4.2.5); interactively it's the CLI — run crawlforge mcp to start the server by hand.

📊 Available Tools

CrawlForge requires a CrawlForge API key — every tool is metered and consumes credits. New accounts get 1,000 free trial credits to start. Get a key at crawlforge.dev/signup.

All Tools (API key required)

Tool

Credits

What it does

fetch_url

1

Fetch content from any URL

extract_text

1

Extract clean text from web pages

extract_links

1

Get all links from a page

extract_metadata

1

Extract page metadata (title, OG tags, schema.org)

scrape_template

1

Structured data from well-known sites (Amazon, GitHub, LinkedIn, YouTube, Reddit, Hacker News, npm, and more) without writing selectors

list_ollama_models

1

List the Ollama models installed locally (helps you pick a model for extract_with_llm)

get_batch_results

1

Retrieve paginated results for a batch_scrape job by batchId

read_result

1

Search, slice, read lines or a JSON path from a result a tool returned with truncated: true and a result_handle (kept 1 hour on your own machine) — never fetch the page again

scrape

2

Unified single-fetch, multi-format extraction. Pass a formats array (markdown/html/rawHtml/text/links/metadata/screenshot/json-schema, plus {type:"highlights",query} and {type:"question",question} for only the matching sentences, table rows and code blocks, verbatim with offsets into the markdown: +1 credit once per call, mode:"model" +3) plus onlyMainContent; one fetch serves every requested format with per-format partial-success warnings. escalate:true retries a blocked plain fetch once in the stealth browser and returns the page instead of the block (+5 as the projected ceiling; the charge drops back to 2 when the plain fetch succeeded and no escalation ran)

scrape_structured

2

Extract structured data with CSS selectors

extract_embedded_state

2

Read a page's embedded JavaScript state — __NEXT_DATA__, React Server Component payloads, Nuxt, Apollo, Redux, <script type="application/json"> — with a path to scope the result. No LLM in the extraction path

extract_content

2

Enhanced content extraction

map_site

2

Discover and map website structure (optional search= ranks the discovered URLs)

process_document

2

Multi-format document processing

localization

2

Multi-language and geo-location management

track_changes

3

Monitor content changes over time

analyze_content

3

Comprehensive content analysis

extract_structured

3

LLM-powered schema-driven extraction (your own LLM key or local Ollama)

extract_with_llm

3

Natural-language extraction. Defaults to a local Ollama model; pass provider: "openai" | "anthropic" with the matching key for cloud models (external LLM billed by your provider)

summarize_content

4

Generate intelligent summaries

crawl_deep

4

Deep crawl entire websites

search_web

5

Search the web using Google Search API

reddit_search

5

Search Reddit posts/comments or read a full thread — reddit.com blocks direct scraping, so this reads the Arctic Shift community archive (free, no Reddit credentials). A Reddit-wide search spends a web search to discover posts, so it is priced with search_web

serp_rank

5

Check where a domain ranks in Google's real organic SERP for a keyword (the position search_web can't give). Powered by DataForSEO (DATAFORSEO_LOGIN/DATAFORSEO_PASSWORD, billed to your own DataForSEO account). Returns { configured:false } and charges 0 credits until configured

batch_scrape

5

Process multiple URLs simultaneously

scrape_with_actions

5

Browser automation chains

generate_llms_txt

5

Generate AI interaction guidelines

stealth_mode

5

Anti-detection browser management

agent

8

Autonomous research/extraction from a natural-language prompt — no URLs required. Plans, gathers, and shapes an answer under hard safety stops (max steps/URLs/wall-clock enforced by the orchestrator, never the LLM)

deep_research

10

Multi-stage research with source verification

Ten tools (scrape, fetch_url, extract_content, crawl_deep, batch_scrape, stealth_mode, scrape_with_actions, process_document, deep_research, extract_embedded_state) accept max_inline_chars (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS): a result over it comes back as a preview plus a result_handle for read_result, with the full result kept for 1 hour under ~/.crawlforge/results/ on your own machine — nothing is uploaded.

For the full canonical capabilities reference (all tools, CLI commands, stealth engines, research workflow), see SKILL.md.

💳 Pricing

Every tool is metered and requires an API key. New accounts get 1,000 free trial credits — no credit card required to start.

Plan

Credits

Best For

Free

1,000 one-time

Testing & personal projects

Hobby ($19)

5,000 / month

Small projects & development

Professional ($99)

50,000 / month

Professional use & production

Business ($399)

250,000 / month

Large scale operations

All plans include:

  • Access to all 30 tools

  • Credits never expire; paid-plan credits roll over month to month

  • API access and webhook notifications

View full pricing

🔧 Advanced Configuration

Environment Variables

# Optional: Set API key via environment
export CRAWLFORGE_API_KEY="cf_live_your_api_key_here"

# Optional: Custom API endpoint (for enterprise)
export CRAWLFORGE_API_URL="https://api.crawlforge.dev"
# As of v3.0.18, this variable is validated against an allow-list of CrawlForge backend hosts.

# Optional: Local LLM (Ollama) overrides — extract_with_llm, extract_structured
# and deep_research all use Ollama when no cloud key is set
export OLLAMA_BASE_URL="http://localhost:11434"   # default; set https://ollama.com for Ollama Cloud
export OLLAMA_DEFAULT_MODEL="gemma3:4b"            # optional; unset = pick the best installed model automatically
                                                   # deep_research judges claims with gemma3:12b when it is installed (ollama pull gemma3:12b);
                                                   # conflict detection is on only with that model, or a cloud provider
export OLLAMA_EMBEDDING_MODEL="nomic-embed-text"   # default: OLLAMA_DEFAULT_MODEL; used for semantic ranking in deep_research
export OLLAMA_API_KEY="..."                        # only for authenticated endpoints (required by Ollama Cloud; a local instance needs none)
export DISABLE_OLLAMA="true"                       # skip Ollama entirely and use CSS/keyword fallbacks

# Optional: Cloud LLM keys — only needed when you pass provider: "openai" or "anthropic"
export OPENAI_API_KEY="sk-..."
export ANTHROPIC_API_KEY="sk-ant-..."

# Optional: limit which tools this client sees — by name, by group, or both (comma-separated)
export CRAWLFORGE_TOOLS="scrape,search_web,extract_content"
export CRAWLFORGE_TOOL_GROUPS="basic,search,scrape"   # unset = all tools; unknown names/groups are ignored with a warning

# Optional: deep_research stealth extraction fallback (v4.6.6) — see below
export RESEARCH_STEALTH_ENGINE="auto"      # auto (default) | camoufox | chromium
export RESEARCH_STEALTH_FALLBACK="true"    # set to "false" to disable entirely
export RESEARCH_MAX_STEALTH_RETRIES="8"    # cap on stealth retries per research run

MCP Spec Features

CrawlForge tracks the current MCP spec (2025-06-18) plus select experimental extensions:

  • Structured outputscrape, map_site, serp_rank, reddit_search, search_web, extract_structured, and crawl_deep return machine-parseable structuredContent alongside the usual text, validated against a published outputSchema; legacy clients keep working off the text.

  • Self-correctable errors — invalid tool input now comes back as an isError: true result the calling model can read and retry from, instead of a raw JSON-RPC protocol error.

  • JSON Schema 2020-12 tool schemas, deterministic tools/list ordering (client prompt-cache friendly), and cacheable-result hints on read-only tools.

  • Icons on the server, its tools, and its prompts.

  • Async tasks (experimental) on the four long-running tools — crawl_deep, batch_scrape, deep_research, agent — for clients that support polling; synchronous results are still returned for clients that don't.

See docs/mcp-spec-adoption.md for wire-level examples and client-compatibility notes.

Local-LLM quickstart (extract_with_llm with Ollama)

extract_with_llm defaults to a local Ollama model — no LLM-provider key, no per-token LLM costs, and no data leaving your machine (the CrawlForge credit cost still applies).

# 1. Install Ollama:  https://ollama.com
# 2. Pull any model from https://ollama.com/library
ollama pull llama3.2

# 3. Discover what's installed (from your MCP client)
#    list_ollama_models()

# 4. Extract — defaults to Ollama with the model from step 2
#    extract_with_llm({ url: "https://example.com", prompt: "…", model: "llama3.2" })

Stealth extraction for deep_research (Camoufox)

deep_research automatically retries sources that block the normal fetch path (Reddit, Quora, forums, and Cloudflare/DataDome-protected pages return HTTP 403) through a real fingerprinted browser, then re-extracts from the rendered HTML. It's bounded (RESEARCH_MAX_STEALTH_RETRIES, default 8, plus a per-page timeout) and lazy — the browser stack only loads when a source is actually blocked.

Engine selection (RESEARCH_STEALTH_ENGINE):

  • auto (default) — prefer Camoufox (Firefox anti-detect), fall back to Chromium stealth, then plain fetch.

  • camoufox — force Camoufox.

  • chromium — force the Chromium stealth engine.

Headless Chromium cannot clear modern challenges (Cloudflare Turnstile, DataDome) — Camoufox can. In testing it recovered Quora and Trustpilot pages that were otherwise fully blocked. To enable it, install the optional dependency and run its one-time binary fetch:

# Camoufox is declared as an optional dependency, so a normal install already pulls it.
# If you installed with --no-optional, add it explicitly:
npm install camoufox

# One-time download of the Camoufox Firefox binary (~130 MB):
npx camoufox fetch

Without the Camoufox binary, deep_research silently falls back to Chromium stealth and then to plain fetch — no errors, just lower recovery on heavily-protected sites. Disable the whole fallback with RESEARCH_STEALTH_FALLBACK=false.

Note: Hard IP-reputation blocks (e.g. Reddit's edge 403) resist headless stealth from any IP and require residential/mobile proxies, which CrawlForge does not provide. See docs/stealth-engines.md for details.

Manual Configuration

Your configuration is stored at ~/.crawlforge/config.json:

{
  "apiKey": "cf_live_...",
  "userId": "user_...",
  "email": "you@example.com"
}

📖 Usage Examples

Once configured, use these tools in your AI assistant:

"Search for the latest AI news"
"Extract all links from example.com"
"Crawl the documentation site and summarize it"
"Monitor this page for changes"
"Extract product prices from this e-commerce site"

🔒 Security & Privacy

  • Secure Authentication: API keys required for all metered tools

  • Local Storage: API keys stored securely at ~/.crawlforge/config.json

  • HTTPS Only: All connections use encrypted HTTPS

  • No Data Retention: We don't store scraped data, only usage logs

  • Rate Limiting: Built-in protection against abuse

  • Compliance: Respects robots.txt and GDPR requirements

Security & Approvals

  • SSRF enforcement: Every scraped URL is validated before the request is sent — http/https only; blocks loopback, RFC1918, IPv6 private/link-local ranges, cloud metadata endpoints (GCP, Azure), and dangerous ports (SSH, SMTP, DNS, MySQL, Postgres, Redis, MongoDB, etc.). Redirects are re-validated each hop, capped at 5.

  • Backend endpoint guard (v3.0.18): The server's own calls to CrawlForge.dev use a separate fail-closed allow-list ({crawlforge.dev, www.crawlforge.dev, api.crawlforge.dev}, HTTPS required). Setting CRAWLFORGE_API_URL to an arbitrary host is blocked at parse time.

  • Action allowlist: scrape_with_actions accepts only 7 action types (wait, click, type, press, scroll, screenshot, executeJavaScript). No download, file-write, or arbitrary cross-page navigation primitives exist.

  • JavaScript gate: The executeJavaScript action throws by default. Set ALLOW_JAVASCRIPT_EXECUTION=true at deploy time to enable (not recommended in production).

  • MCP Elicitation (v3.6.0): Four tools request user confirmation before executing expensive operations — deep_research (>50 URLs), batch_scrape (sync mode, >25 URLs), crawl_deep (projected >500 pages), extract_structured (schema has >3 required fields with no LLM configured). Credit-low situations also elicit. Confirmation is best-effort: if the MCP client does not support elicitation the tool proceeds (fail-open).

  • Per-tool credit gating: Every tool is wrapped with withAuth() and is metered — credits are checked and deducted before execution, and a valid API key is required for every tool (fail-closed since v3.0.18).

See docs/sandboxing-and-approvals.md for the full reference.

Security Updates

v3.0.3 (2025-10-01): Removed authentication bypass vulnerability. All users must authenticate with valid API keys.

For the full security policy and how to report a vulnerability, see SECURITY.md.

🆘 Support

📄 License

MIT License - see LICENSE file for details.

🤝 Contributing

Contributions are welcome! Please read our Contributing Guide first.


Built with ❤️ by the CrawlForge team

Website | Documentation | API Reference

Available Tools

30 tools
agentA
Read-only

Use this when you need an autonomous agent to research, navigate, and synthesise an answer from the web - no URLs required. The agent plans search queries, fetches and filters relevant pages, and returns a prose or structured answer. model:"pro" uses deep multi-source research. Hard limits: maxSteps<=10, maxUrls<=20, 120s wall-clock. Confirms before pro runs. Degraded-but-useful output if no LLM keys/Ollama. Not for a URL you already have (scrape) or a question one search answers (search_web). Cost: 8 credits, scales with maxUrls. Example: agent({prompt:"What are the top 5 MCP servers in 2025?", maxUrls:10})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlsNoOptional seed URLs to include (max 20)
modelNo"default" = SamplingClient loop (no keys needed); "pro" = full ResearchOrchestratordefault
promptYesNatural-language task or question
schemaNoOptional JSON schema for structured output
maxUrlsNoMax URLs to fetch (hard cap: 20)
maxStepsNoMax fetch iterations (hard cap: 10)

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description adds substantial behavioral context: it plans searches, fetches and filters pages, returns prose or structured answers, has hard limits, confirms before pro execution, degrades gracefully without LLM keys, and costs credits scaling with maxUrls. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Every sentence contributes: use case, mechanism, model variant, hard limits, pro confirmation, degraded mode, exclusions, cost, and example. The key trigger is front-loaded and the density is justified by the tool's complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 6-parameter autonomous agent tool with no output schema, the description provides enough context to call it correctly: expected return shape, limits, cost, failure behavior, alternatives, and a runnable example. Nothing essential seems missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema carries the baseline parameter documentation. The description adds meaning beyond the schema by explaining the maxUrls cost scaling, the model behavior difference, and a concrete invocation example that maps prompt and maxUrls together.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource: an autonomous agent that researches, navigates, and synthesizes an answer from the web. It explicitly distinguishes itself from siblings by saying it is not for a URL you already have (scrape) or a question one search answers (search_web).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Opens with a direct when-to-use condition ('when you need an autonomous agent... no URLs required') and provides explicit exclusions for scrape and search_web. It also adds usage nuance for model selection, maxUrls costing, and the confirmation requirement before pro runs.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

analyze_contentA
Read-onlyIdempotent

Use this for NLP metrics on text you already hold - language detection, sentiment, topic extraction, entity recognition, readability score - for content auditing and classification. Takes text, not a URL. Not for reading a page (scrape returns the markdown to pass in). Cost: 3 credits. Example: analyze_content({text: "..article text..", options: {extractTopics: true, includeSentiment: true}})

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesThe text content to analyze
optionsNoAnalysis options

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnly/idempotent/non-destructive hints, so the description's burden is lower. It adds useful behavioral context beyond annotations: the 3-credit cost and the constraint that it accepts inline text rather than a URL. It does not describe the output structure, but the listed metrics partially imply what will be returned.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but every sentence earns its place: when to use, what it analyzes, input format, exclusion, cost, and a concrete usage example. It is front-loaded with the core purpose and ends with the example, which is ideal.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only, idempotent analysis tool, the description covers the key operational details: input expectations, cost, example invocation, and exclusionary context. The main gap is the lack of an explicit return-shape statement, but the absence of an output schema is partially mitigated by the listed analysis metrics.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, with text described as 'The text content to analyze'. The description adds concrete meaning by showing example option keys (extractTopics, includeSentiment) and clarifying that text is the raw content, not a URL. This compensates for the empty options object in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool analyzes text with NLP metrics (language detection, sentiment, topic extraction, entity recognition, readability) for content auditing and classification. It explicitly distinguishes itself from page-reading tools by saying 'Takes text, not a URL', separating it from scrape and related siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives explicit when-to-use guidance ('NLP metrics on text you already hold') and when-not-to-use guidance ('Not for reading a page'), even naming the exact alternative path: 'scrape returns the markdown to pass in'. This provides actionable routing to the agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

batch_scrapeA
Read-only

Use this to scrape 2-50 URLs in one call - product pages, news articles, competitor pages. Never loop scrape over a URL list. mode:"sync" returns results directly for up to ~25 URLs; mode:"async" with a webhook for larger batches, then get_batch_results. Not for one URL (scrape) or for discovering URLs (map_site). Cost: 5 credits. Example: batch_scrape({urls: ["https://a.com","https://b.com"], formats: ["json"], maxConcurrency: 5})

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoProcessing mode: sync (wait) or async (background)sync
urlsYesArray of URLs or URL objects to scrape
formatsNoOutput formats for scraped content
webhookNoWebhook configuration for async job notifications
pageSizeNoNumber of results per page
jobOptionsNoJob management options for async processing
redact_piiNoRedact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
includeFailedNoInclude failed URLs in results
maxConcurrencyNoMaximum concurrent scraping requests
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
includeMetadataNoInclude page metadata in results
extractionSchemaNoSchema for structured data extraction from each URL
max_inline_charsNoLargest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)
delayBetweenRequestsNoDelay in milliseconds between requests

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is known. The description adds value beyond that by disclosing cost (5 credits), the sync/async behavior difference, the webhook requirement for async, and the existence of get_batch_results. It doesn't contradict annotations. A small gap is that it doesn't describe return format or pagination, but that is secondary given the annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences plus an example. It front-loads the purpose, immediately states the key usage constraint (no looping), and provides a concrete example. Every sentence earns its place; no fluff or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex tool with 15 parameters, nested objects, and no output schema, the description covers the most critical decision points: when to use it, how to scale via modes, cost, and an example. It doesn't explain all parameters, but the schema does that. It also points to get_batch_results for async retrieval. Slight gap: it doesn't describe the sync return structure or pagination, but that is not explicitly required given the schema and the tool's nature.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so every parameter is described in the schema. The description adds an example that illustrates urls, formats, and maxConcurrency, and it explains the mode parameter's semantics (sync vs async) beyond the enum. However, it doesn't clarify other parameters like redact_pii, extractionSchema, or jobOptions, relying on the schema. This is adequate given the schema's thoroughness.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'scrape 2-50 URLs in one call' and names target content types. It immediately distinguishes itself from siblings by stating it is 'Not for one URL (scrape) or for discovering URLs (map_site)', so an agent can separate it from the many sibling scraping tools without opening schemas.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives explicit when-to-use guidance: 'Never loop scrape over a URL list' and explains the mode choice (sync for up to ~25 URLs, async with webhook for larger batches). It names the alternatives (scrape, map_site) and the condition that selects them, plus an example call. This is comprehensive routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

crawl_deepA
Read-only

Use this to fetch many pages of one site by following links - a knowledge base, a docs index, a full-site audit. Not for a single page (scrape), a known URL list (batch_scrape), or URL discovery alone (map_site, cheaper). Cost: 4 credits base, grows with page count. Example: crawl_deep({url: "https://docs.example.com", max_depth: 3, max_pages: 200, extract_content: true})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesStarting URL for the crawl
sessionNoShared cookie-jar/session for login-then-crawl workflows
max_depthNoMaximum crawl depth from starting URL
max_pagesNoMaximum number of pages to crawl
redact_piiNoRedact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off
concurrencyNoNumber of concurrent requests
domain_filterNoPer-domain allow/deny lists and crawl rules
respect_robotsNoRespect robots.txt directives
extract_contentNoExtract page content during crawl
follow_externalNoFollow links to external domains
exclude_patternsNoURL patterns to exclude (regex)
include_patternsNoURL patterns to include (regex)
max_inline_charsNoLargest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)
content_max_lengthNoMaximum characters of page content to include per page (default 500); sets a truncated flag when trimmed
enable_link_analysisNoCompute PageRank/link-graph analysis over crawled pages
import_filter_configNoJSON string of a previously exported domain-filter config
link_analysis_optionsNoPageRank tuning options

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlNo
viewNoWhether preview and read_result offsets index a text field or the pretty-printed JSON
_costNoCost-transparency metadata (D3.5), present when injected into the text copy of the result
errorNo
statsNo
cachedNoTrue when this response was replayed from an earlier crawl rather than crawled now; crawled_at gives its age
errorsNo
previewNoThe first max_inline_chars characters of the view named by view_path (or of the pretty-printed JSON)
resultsNo
sessionNo
successNoFalse only when the crawl was cancelled via elicitation decline
redactionNoPresent when redact_pii was set: what was redacted from the text of this result
truncatedNoTrue when the inline result is a preview
view_pathNoDotted path of the text field the view was cut from; null for the JSON view
crawled_atNoWhen the pages were actually fetched (ISO 8601)
expires_atNoWhen the stored result is dropped (ISO 8601)
crawl_depthNo
duration_msNo
error_countNo
pages_foundNo
total_charsNoLength of the full view in characters
link_analysisNo
pages_crawledNo
result_handleNoHandle for read_result; the full result is kept 1 hour
site_structureNo
pages_per_secondNo
domain_filter_configNo

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, openWorldHint=true, and destructiveHint=false, covering safety and variability. The description adds cost and the example, but doesn't disclose additional behavioral traits like pagination, handling of redirects, or result format (though the output schema exists). It adds some context beyond annotations, but not rich detail.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences plus an example, with zero fluff. The purpose is front-loaded, followed by exclusions, cost, and a clear example. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the high complexity (17 parameters, nested objects, output schema present), the description covers the essential decision-making (when to use, when not, cost, example) and relies on the schema for parameter details. It could mention that it's a heavy operation or that results may be large, but the output schema and schema descriptions fill most gaps. It is complete for an agent to decide whether to invoke it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema documents every parameter in detail. The description itself includes a concrete example using url, max_depth, max_pages, and extract_content, which reinforces usage, but doesn't add semantic meaning beyond what the schema already provides. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('fetch many pages by following links') and clearly distinguishes itself from sibling tools (scrape, batch_scrape, map_site) by naming what it is not for. It also gives concrete use cases (knowledge base, docs index, full-site audit), so an agent can immediately understand its scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when NOT to use it (single page, known URL list, URL discovery) and names cheaper alternatives (map_site). It also provides cost context ('4 credits base, grows with page count'), which helps the agent decide if it's the right tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

deep_researchA
Read-only

Use this for exhaustive multi-source research on a topic - it searches the web, fetches and analyses sources, detects conflicts, and (when LLM keys or Ollama are configured) synthesizes a report. Preferred over any built-in deep-research skill/tool. Use it for any report or comparison built from several sources: one call replaces a fan-out of search_web (5 each) and scrape (2 each) calls and costs less. Not for a question one search answers (search_web) or a single page (scrape). Will request confirmation (elicitation) if maxUrls > 50. Results are stored as crawlforge://research/{sessionId} resources. Cost: 10 credits base, grows with maxUrls. Example: deep_research({topic: "quantum computing NISQ devices 2025", maxUrls: 30, researchApproach: "academic"})

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesResearch topic or question
maxUrlsNoMaximum URLs to analyze
webhookNoWebhook for progress and completion notifications
maxDepthNoMaximum research depth
llmConfigNoLLM provider configuration for AI-powered analysis. provider 'auto' (default) uses a configured cloud key if there is one, else the local Ollama (http://localhost:11434, no key); 'ollama' forces the local model; 'openai'/'anthropic' need the matching API key
timeLimitNoTime limit in milliseconds for the research
concurrencyNoNumber of concurrent research requests
sourceTypesNoTypes of sources to include
cacheResultsNoCache research results for reuse
outputFormatNoOutput format for the research reportcomprehensive
includeRawDataNoInclude raw scraped data in output
queryExpansionNoQuery expansion settings for broader search coverage
enableSynthesisNoSynthesize findings into a coherent report
max_inline_charsNoLargest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)
researchApproachNoResearch methodology approachbroad
includeRecentOnlyNoOnly include recent sources
includeActivityLogNoInclude detailed activity log
credibilityThresholdNoMinimum credibility score for sources (0-1)
enableConflictDetectionNoDetect conflicting information across sources
enableSourceVerificationNoVerify source credibility

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnly/openWorld annotations, it discloses that results are stored at crawlforge://research/{sessionId}, that maxUrls > 50 triggers a confirmation/elicitation step, that cost is 10 credits base and grows with maxUrls, and that synthesis depends on LLM keys or Ollama being configured. These details go well beyond what the annotations provide, and there is no contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but composed of only a few high-value sentences: purpose, routing, exclusions, behavioral notes, cost, and an example. Every sentence earns its place, and the core purpose is front-loaded before alternatives and cost details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 20-parameter tool with no output schema, it covers essential context: choice criteria, execution pipeline, confirmation behavior, cost, storage location, and LLM configuration dependency. It does not explicitly describe the report's return shape, but the schema's max_inline_chars documentation about preview plus result_handle partially fills that gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3; the description adds meaningful semantics around maxUrls (confirmation threshold and cost scaling) and includes a concrete example mapping topic, maxUrls, and researchApproach. Other parameters are left to the schema, but the schema already documents them thoroughly.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb-resource pair ('exhaustive multi-source research on a topic') and details the pipeline: web search, source fetch/analysis, conflict detection, and report synthesis when LLM/Ollama is configured. It also explicitly differentiates this tool from search_web and scrape, so an agent can distinguish it from relevant siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It states when to use it ('any report or comparison built from several sources'), names alternatives explicitly (search_web and scrape), and gives clear negative guidance ('Not for a question one search answers' or 'a single page'). It also declares it preferred over built-in deep-research skills, leaving no ambiguity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

extract_contentA
Read-onlyIdempotent

Use this for the readable body of an article-style page with ads, nav, footers and boilerplate removed - for RAG ingestion, summarisation, or LLM context. Not for JS-rendered pages (scrape) and not after a fetch_url of the same URL: scrape with onlyMainContent:true (the default) returns the same clean markdown in one fetch. Cost: 2 credits. Example: extract_content({url: "https://blog.example.com/post-title"})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to extract content from
optionsNoAdditional extraction options
redact_piiNoRedact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
max_inline_charsNoLargest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and idempotentHint=true. The description adds valuable behavioral context beyond that: the 2-credit cost, the fact that it returns clean markdown, and the overlap with scrape's default behavior. It doesn't cover response format or pagination, but the safety profile is handled by annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Every sentence earns its place: purpose, exclusions with alternatives, cost, and example. The most critical information (what it is and when not to use it) is front-loaded. No filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 6 parameters and nested objects, the description covers the core decision (when to use), cost, and a minimal invocation example. Advanced parameters like options, redact_pii, and max_inline_chars are left to the schema, which documents them thoroughly. The description is complete enough for correct basic invocation and tool selection.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description includes a concrete example using the required url parameter, which reinforces its meaning, but it doesn't add semantic detail for the other parameters beyond what the schema already provides. The example is useful but not additive to the schema's own documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb (extract) and resource (readable body of an article-style page with boilerplate removed). Distinguishes itself from siblings by explicitly naming scrape and fetch_url as alternatives for different scenarios, so an agent can tell them apart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use (RAG, summarization, LLM context) and when-not-to-use (JS-rendered pages, after fetch_url) with named alternatives. Also notes that scrape with onlyMainContent:true already returns the same clean markdown, eliminating redundant calls.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

extract_embedded_stateA
Read-onlyIdempotent

Use this when a page's data lives in its embedded JavaScript state rather than its rendered HTML - Next.js (NEXT_DATA and React Server Component payloads), Nuxt, Apollo, Redux (INITIAL_STATE, PRELOADED_STATE), and blocks. One fetch, exact values, no LLM in the extraction path, so nothing can be fabricated. Payloads are routinely over a megabyte - pass path to return one subtree instead of the whole blob. Not for the rendered text of a page (scrape) or for sites built without a framework payload. Cost: 2 credits. Example: extract_embedded_state({url: "https://www.ticketmaster.com/discover/concerts", path: "next_data.props.pageProps"})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to read embedded state from
pathNoReturn only this subtree instead of the whole payload. Dotted keys and array indexes, e.g. "next_data.props.pageProps" or "next_f[0].f" — not JSONPath (no wildcards, filters or recursion). State payloads are routinely over a megabyte; scope them.
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
max_inline_charsNoLargest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds meaningful behavioral context beyond annotations: 'One fetch, exact values, no LLM in the extraction path, so nothing can be fabricated,' and warns payloads are often over a megabyte. It also discloses the credit cost, which is useful operational behavior. No contradiction with the readOnly/idempotent/destructive annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Every sentence earns its place: purpose, framework guidance, behavioral guarantee, payload-size warning, non-usage exclusion, cost, and a realistic example. It is dense but well organized, front-loading the core decision before the details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having no output schema, the description gives enough to invoke the tool correctly: when to use it, how to scope large results with path, an executable example, and clear non-targets. The schema covers parameter mechanics like robots and inline limits, so no critical guidance is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema coverage is 100%, so the baseline is 3. The description adds value by explaining why path matters ('Payloads are routinely over a megabyte') and giving a concrete path example ('next_data.props.pageProps'), going beyond the schema's syntax note.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb and resource: extracting data from a page's embedded JavaScript state rather than rendered HTML. It explicitly identifies frameworks (Next.js, Nuxt, Apollo, Redux, application/json blocks) and distinguishes itself from scrape with 'Not for the rendered text of a page (scrape) or for sites built without a framework payload.'

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The opening line states the exact condition for use: 'Use this when a page's data lives in its embedded JavaScript state rather than its rendered HTML.' It also gives an explicit exclusion and the name of the alternative (scrape), plus an example showing the intended call shape.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

extract_metadataA
Read-onlyIdempotent

Use this for a page's SEO metadata only: title, meta description, Open Graph tags, canonical URL, schema.org data. Not alongside a scrape of the same URL: scrape formats:["markdown","metadata"] returns both in one fetch. Cost: 1 credit. Example: extract_metadata({url: "https://example.com"})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to extract metadata from
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
json_ld_typesNoFilter the returned JSON-LD to nodes of these schema.org types, e.g. ["Product","Offer"]. Subtypes match their parent: "Event" returns MusicEvent, "Offer" returns AggregateOffer, "ItemList" returns BreadcrumbList. Nodes are found at any depth, including inside @graph and nested inside a parent node. When set, json_ld carries only the matching nodes instead of the raw dump, and json_ld_type_counts reports how many matched per requested type. Documented types: ItemList, Product, Offer, Event, JobPosting, RealEstateListing — any other schema.org type is matched exactly.
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations already declare readOnly, idempotent, and non-destructive behavior, so the safety profile is covered. The description adds the cost detail ('1 credit') and a note about avoiding duplicate scrapes, but it does not disclose behavioral aspects like response shape, robots.txt handling, or user_agent defaults beyond what annotations already imply.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: the core purpose appears first, followed by the anti-duplication warning, cost, and a usage example. Every sentence earns its place and there is no redundant wording.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity and the fully documented input schema, the description covers the essential operational details: purpose, when to avoid it, cost, and an example call. It does omit an explicit description of the response envelope, but the listed metadata fields already hint at the return content, so nothing critical is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all four parameters. The description only shows a URL example and does not go beyond the schema's parameter documentation, so it meets the baseline but provides no additional parameter-level meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb and resource: extracting a page's SEO metadata, then enumerates exactly which fields are included (title, meta description, Open Graph tags, canonical URL, schema.org data). It also distinguishes itself from the scrape tool by explicitly warning against using it alongside a scrape of the same URL.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It states precisely when to use the tool ('for a page's SEO metadata only') and when not to use it ('Not alongside a scrape of the same URL'). It names the alternative and the exact condition that makes it better: scrape with formats ['markdown','metadata'] returns both in one fetch.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

extract_structuredA
Read-onlyIdempotent

Use this to get a specific data shape from a page using a JSON schema when you can describe the fields but not their selectors - product details, job listings, event data. Uses an LLM by default; falls back to CSS selectors when no LLM is configured. Not for pages with stable markup whose selectors you know (scrape_structured, no LLM, cheaper). Cost: 3 credits. Example: extract_structured({url: "https://jobs.example.com/post/123", schema: {properties: {title: {type:"string"}, salary: {type:"string"}}, required:["title"]}})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to extract structured data from
promptNoNatural language instructions for extraction
schemaYesJSON schema defining the data structure to extract
llmConfigNoLLM provider configuration for AI-powered extraction
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
selectorHintsNoCSS selector hints to guide extraction
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
verify_numbersNoNumeric provenance guard (default: true): every price or numeric value the LLM returns must appear literally in the page source, else it is returned as null with a reason in `provenance.unverified`. Set false to get the model's raw numbers back, including ones it derived (a count, a sum, a total) rather than read off the page.
fallbackToSelectorsNoFall back to CSS selector extraction if LLM is unavailable

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlNo
dataNoExtracted fields matching the requested schema
_costNoCost-transparency metadata (D3.5), present when injected into the text copy of the result
errorNo
successNoFalse when the extraction errored or a required field came back missing or empty
confidenceNo
provenanceNo
validationNo
schema_usedNo
processingTimeNo
extractionNotesNo
extraction_methodNo"llm" | "css_fallback" | "keyword_fallback" | "none"

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already establish readOnlyHint, idempotentHint, and destructiveHint. The description adds meaningful behavioral context beyond annotations by stating that it uses an LLM by default, falls back to CSS selectors when no LLM is configured, and costs 3 credits. It does not contradict the annotations. The description could also mention response/provenance behavior, but the parameter descriptions and output schema already cover some of that.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is efficiently structured: it front-loads the core use case, gives examples, names the alternative, states the cost, and provides a minimal illustrative example. Every sentence earns its place, and nothing is redundant with the schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity—9 parameters, nested objects, and an output schema—the description covers the essential decision context: when to use it, when not to, LLM fallback behavior, and cost. The parameter schema supplies the remaining details. A minor gap is that high-level behavioral knobs like verify_numbers and respect_robots are not mentioned in the description, but they are adequately explained in the schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the parameter descriptions carry the baseline. The description adds a concrete example showing how to pass the schema object and required fields, which helps clarify the schema parameter. However, it adds no semantic detail for most other parameters like prompt, llmConfig, selectorHints, or user_agent, so it stays at the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'get a specific data shape from a page using a JSON schema.' It clarifies the exact use case—describing fields but not their selectors—and gives concrete examples (product details, job listings, event data). It also explicitly distinguishes the tool from scrape_structured, removing any ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit when-to-use guidance: use when 'you can describe the fields but not their selectors.' It names the alternative tool and the condition to choose it instead: 'Not for pages with stable markup whose selectors you know (scrape_structured, no LLM, cheaper).' This gives both positive and negative selection criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

extract_textA
Read-onlyIdempotent

Use this for a page's plain text or markdown with tags, scripts and styles removed - the cheapest read of a static HTML page. Use output_format:"markdown" for RAG. Not for article pages (extract_content strips nav and boilerplate), JS-rendered pages (scrape), or when you also want links or metadata (scrape with several formats, one fetch). Cost: 1 credit. Example: extract_text({url: "https://example.com/article", output_format:"markdown"})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to extract text from
redact_piiNoRedact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
output_formatNoOutput format: "text" (default) or "markdown" — use markdown for RAG workflowstext
remove_stylesNoRemove style tags before extraction
remove_scriptsNoRemove script tags before extraction
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, and non-destructive behavior, so the bar is lower. The description adds useful behavioral context: it strips tags/scripts/styles, targets static HTML rather than JS-rendered pages, costs 1 credit, and this is the cheapest read. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences with no waste: usage, exclusions, cost, and an example are all packed efficiently. The most important scoping information is front-loaded, and every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only extraction tool with 7 parameters fully described in the schema and no output schema, the description covers everything needed to select and invoke it correctly: when to use it, alternatives, cost, format choice, and a concrete example. Nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3; the schema already documents each parameter thoroughly. The description adds marginal value by pointing out the markdown format for RAG and showing an example call, but it does not provide substantial meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States exactly what the tool returns: a page's plain text or markdown with tags, scripts, and styles removed, and identifies it as the cheapest read of a static HTML page. It also names sibling tools (extract_content, scrape) and the conditions that select them, so the agent can distinguish it from alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says when to use it (static HTML plain text/markdown, cheap read, RAG with markdown) and when not to (article pages, JS-rendered pages, or when links/metadata are needed), naming the alternative for each exclusion. The example call also gives concrete usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

extract_with_llmA
Read-only

Extract data from a URL or text using a natural-language prompt. Defaults to a local Ollama model (http://localhost:11434, no API key required) and picks an installed model itself; pass model to choose one, or provider: "openai" or "anthropic" with the matching API key to use a cloud model instead. Not for known selectors (scrape_structured) or a schema-shaped result (extract_structured). Call list_ollama_models only when a model name is rejected. Cost: 3 credits plus your LLM provider's own charge.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoURL to fetch and extract from (one of url/content required)
modelNoOverride the model. For ollama, pass a name returned by list_ollama_models (e.g. 'llama3.2', 'qwen2.5:7b'). Defaults: openai='gpt-4o-mini', anthropic='claude-haiku-4-5-20251001', ollama='llama3.2' or $OLLAMA_DEFAULT_MODEL.
promptYesNatural-language extraction instruction
schemaNoOptional JSON-schema for output shape (used as Ollama structured-outputs format when provider is 'ollama')
contentNoPre-fetched text to extract from (one of url/content required)
providerNoLLM provider. Defaults to 'ollama' (local, no key, http://localhost:11434). Use 'openai' or 'anthropic' for cloud models (requires the matching API key).auto
maxTokensNoMaximum output tokens
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
verify_numbersNoNumeric provenance guard (default: true): every price or numeric value the LLM returns must appear literally in the page source, else it is returned as null with a reason in `provenance.unverified`. Set false to get the model's raw numbers back, including ones it derived (a count, a sum, a total) rather than read off the page.

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds valuable behavioral context beyond annotations: default Ollama local endpoint with no API key, automatic model selection, cloud providers needing matching API keys, and cost (3 credits plus the provider's own charge). No contradiction with annotations; the extra context justifies a score above baseline.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is information-dense but every sentence earns its place: purpose, default behavior, model/provider overrides, exclusions, when to call a sibling, and cost. The core purpose is front-loaded, and there is no fluff or restatement of the tool name.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 10 parameters and no output schema, the description covers the key invocation decisions: required prompt, url/content mutual requirement, provider/model defaults, and when to use alternatives. It omits the return-value shape, but the absence of an output schema makes this a minor gap; the essential behavioral and routing information is present.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema documents every parameter. The description adds meaning beyond the schema by specifying default model names per provider, explaining that 'auto' resolves to Ollama, and clarifying that url/content are mutually required. This is genuinely additive to the structured field descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'Extract data from a URL or text using a natural-language prompt.' It explicitly names the siblings it is not for ('Not for known selectors (scrape_structured) or a schema-shaped result (extract_structured)'), so an agent can distinguish it from extract_structured and scrape_structured without opening their schemas.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit when-to-use context: use for natural-language extraction from URL/text, not for selector-based scraping or schema-shaped results, and call list_ollama_models only when a model name is rejected. Provider selection (ollama vs openai/anthropic) and API key requirements are also made clear, leaving little to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

fetch_urlA
Read-onlyIdempotent

Use this for a raw HTTP body - JSON, XML, plain text, an API response - or for the status code, headers and response time. Returns the body unprocessed. Not for HTML you intend to read: scrape returns markdown from one fetch, so fetch_url followed by extract_* is a double fetch. Not for JS-rendered or bot-protected pages (scrape, then stealth_mode). Supports custom headers (e.g. auth tokens) and a timeout. Cost: 1 credit. Example: fetch_url({url: "https://api.example.com/v1/items", timeout: 15000})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to fetch content from
headersNoCustom HTTP headers to include in the request
timeoutNoRequest timeout in milliseconds (1000-30000)
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
max_inline_charsNoLargest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the safety profile is covered. The description adds significant behavioral context beyond that: it discloses the cost (1 credit), the timeout and custom headers support, the unprocessed return of the body, and the specific behavior of respect_robots (recording false setting against API key and returning a warning). It also explains max_inline_chars behavior (preview + result_handle). No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, front-loaded with the core purpose and immediately contrasting with siblings. Every sentence earns its place: purpose, exclusions, features, cost, and an example. No fluff, no repetition of schema details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 6 parameters and no output schema, the description covers all necessary decision points: what to use it for, what to avoid, what it returns, cost, and edge cases (large results). It also names the sibling tools an agent might consider. The absence of an output schema is mitigated because the description explicitly states it returns the body and also mentions status, headers, and response time. The example shows a minimal valid call. Everything an agent needs to invoke correctly is present.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds value by hinting at typical header usage ('e.g. auth tokens') and by including an example that demonstrates timeout usage. It also clarifies the implication of respect_robots and max_inline_chars in context, going slightly beyond the schema descriptions. However, the schema already fully documents each parameter, so the increment is modest.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb-resource pair ('fetch a URL') and immediately distinguishes itself from siblings by specifying exactly what it returns (raw body, status, headers, response time) and what it does not (HTML rendering). It names the sibling 'scrape' and the extract_* family as alternatives, making differentiation explicit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit when-to-use guidance (raw HTTP body, API responses) and when-not-to-use (HTML for reading, JS-rendered or bot-protected pages), and points to alternatives: 'scrape returns markdown from one fetch' and 'scrape, then stealth_mode'. It also includes a concrete example call, reinforcing correct invocation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

generate_llms_txtA
Read-onlyIdempotent

Use this to generate an llms.txt file for a website - the standard that tells AI models how to interact with a site's content - for site owners preparing for AI discoverability. Not for reading a site's existing llms.txt (fetch_url on /llms.txt). Cost: 5 credits. Example: generate_llms_txt({url: "https://example.com"})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe website URL to generate llms.txt for
formatNoOutput format: llms.txt, llms-full.txt, or bothboth
outputOptionsNoOutput customization and organization details
analysisOptionsNoWebsite analysis options for depth, scope, and detection
complianceLevelNoCompliance level for generated guidelinesstandard

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already carry readOnly/idempotent/non-destructive hints; the description adds the 5-credit cost and an example but does not disclose that the tool will fetch/analyze the target website or what 'generate' returns. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: purpose, exclusion/alternative, cost, and example are delivered in three sentences with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with nested options and no output schema, the description still covers the core decision and invocation. It could more explicitly state that the tool crawls/analyzes the site and what the result payload looks like, but the cost, example, and annotation-provided safety profile make it sufficiently complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so parameter meaning is already documented. The description only gives a url example and adds no semantics for format, outputOptions, analysisOptions, or complianceLevel beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a concrete verb and resource ('generate an llms.txt file for a website'), explains the standard and audience, and explicitly says what it is not for, differentiating it from fetch_url on /llms.txt.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

'Use this to generate...' and 'Not for reading... (fetch_url on /llms.txt)' give direct when/when-not guidance with the alternative named. The 5-credit cost and minimal invocation example also reinforce appropriate use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_batch_resultsA
Read-onlyIdempotent

Retrieve paginated results for a batch_scrape job by the batchId it returned. Not a scraping tool - it re-reads an already-paid batch. Poll only async jobs; a sync batch has already returned its results. Cost: 1 credit. Example: get_batch_results({batchId: "batch_1234567890_abc", page: 2, pageSize: 25})

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (1-based)
batchIdYesThe batch ID returned by batch_scrape
pageSizeNoNumber of results per page

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover readOnly and idempotent hints. The description adds cost (1 credit), the need to poll only async jobs, and an example, which enriches the behavioral context without contradicting annotations. It does not discuss error handling, but that is not essential for this tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise with two sentences plus an example, front-loading the core purpose and then adding necessary clarifications. No redundant phrasing.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with three parameters, one required, and no output schema. The description covers purpose, usage constraints, cost, and gives an example, so an agent has enough to call it correctly without additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description includes an example with parameters but adds no new meaning beyond what the schema already documents for batchId, page, and pageSize. It does not clarify defaults or constraints beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves paginated results for a batch_scrape job using a batchId, and explicitly distinguishes it from a scraping tool. It uses a specific verb and resource, and the mention of 're-reads an already-paid batch' differentiates it from sibling scraping tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit guidance on when to use: only for async batch jobs, and notes that sync batches already returned results. It also clarifies it is not a scraping tool, helping an agent choose between this and scraping siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_ollama_modelsA
Read-onlyIdempotent

List the Ollama models installed locally, to choose a model value for extract_with_llm. Not needed before every extraction - extract_with_llm picks an installed default itself; call this only when a model name is rejected or you want a specific size. Requires Ollama running on http://localhost:11434 (or $OLLAMA_BASE_URL). Cost: 1 credit.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly, idempotent, and non-destructive, so the bar for additional behavior is lower. The description adds meaningful context: the Ollama prerequisite (localhost:11434 or $OLLAMA_BASE_URL), the associated credit cost, and the 'installed locally' scope. It doesn't cover error behavior, but that is a minor gap for a simple read-only list.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, each earning its place: the core operation, the usage guidance, and the prerequisite/cost. The key information is front-loaded and there is no wasted text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter, read-only list tool, the description covers purpose, when to use, the alternative, the infrastructure prerequisite, and cost. The output is implied by the purpose ('list... to choose a model'), so nothing needed for correct invocation is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, so the baseline is 4. The description correctly avoids inventing parameter guidance and instead clarifies the output's intended use ('model' value for extract_with_llm), which adds value beyond the empty schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('List'), a precise resource ('Ollama models installed locally'), and a clear purpose (choosing a model for extract_with_llm). It is distinct from all sibling tools and leaves no ambiguity about what the tool returns.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says the tool is not needed before every extraction, names the alternative behavior (extract_with_llm picks a default), and gives two concrete conditions for calling it: a rejected model name or a need for a specific size. This is excellent when-to-use guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

localizationA

Use this to scrape geo-restricted content or emulate a specific locale/timezone - region-specific pricing, geo-blocks, searching in another language. Use operation:"configure_country" to set country context for the scraping calls that follow. Not for an ordinary page read (scrape). Cost: 2 credits. Example: localization({operation:"configure_country", countryCode:"DE", language:"de"})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoURL — required for handle_geo_blocking; for auto_detect it is optional metadata used only as a TLD country hint (the page is never fetched)
contentNoPage content (HTML or plain text) to analyze — required for auto_detect; no fetching is performed
currencyNoISO 4217 currency code (e.g. 'USD', 'EUR')
languageNoLanguage code (e.g. 'en', 'fr', 'de')
responseNoHTTP response for geo-blocking analysis
timezoneNoIANA timezone identifier (e.g. 'America/New_York')
operationNoLocalization operation to performconfigure_country
userAgentNoCustom user agent string
countryCodeNoISO 3166-1 alpha-2 country code
geoLocationNoGPS coordinates for geolocation emulation
searchParamsNoSearch parameters for localized search queries
customHeadersNoCustom HTTP headers for localized requests
proxySettingsNoProxy configuration for geo-targeted requests
acceptLanguageNoAccept-Language header value
browserOptionsNoBrowser context options for locale emulation

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark the tool as non-read-only, non-idempotent, and non-destructive. The description adds a stateful side effect (configure_country sets country context for subsequent scraping calls), clarifies that it is not a normal page fetch, and discloses the 2-credit cost. This adds useful context beyond the annotations, though it stops short of describing effects of the other operations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three compact sentences plus one illustrative example. Purpose is front-loaded, cost and exclusion are included without bloat. The opening clause is slightly run-on, but the overall length and structure are appropriate.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description fully supports the configure_country path and excludes ordinary scraping, but the tool exposes eight operations and has no output schema. The other operations such as localize_search, auto_detect, handle_geo_blocking, and get_stats are not mapped to use cases or expected outputs, which is a clear gap for a multi-operation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds value with a concrete invocation binding operation, countryCode, and language, and explains what configure_country does with those parameters. The rest of the parameters are already well documented in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States concrete use cases: scraping geo-restricted content, emulating a locale/timezone, region-specific pricing, geo-blocks, and localized search. It also distinguishes itself from the 'scrape' sibling with 'Not for an ordinary page read (scrape)' and provides a concrete example so an agent can tell what the tool is for.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives explicit when-to-use conditions (geo-restricted content, locale/timezone emulation) and an explicit when-not ('Not for an ordinary page read (scrape)'). The example shows exactly how to invoke the primary configuration operation. It does not map out all eight operations, but the tool-vs-alternative decision is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

map_siteA
Read-onlyIdempotent

Use this to list a site's URLs without fetching page bodies - reads sitemap.xml when available, otherwise follows links. Not for page content (scrape, or crawl_deep for many pages) and not for the links on one page (extract_links). Cost: 2 credits. Example: map_site({url: "https://example.com", include_sitemap: true, max_urls: 500})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe website URL to map
searchNoWhen set, rank discovered URLs by relevance to this string and emit ranked_urls:[{url,score}]
max_urlsNoMaximum number of URLs to discover
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
domain_filterNoPer-domain allow/deny lists and URL include/exclude patterns
group_by_pathNoGroup URLs by path segments
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
include_sitemapNoInclude sitemap.xml data in results
include_metadataNoInclude page metadata for each URL
import_filter_configNoJSON string of a previously exported domain-filter config

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlsNoFlat array of URLs, or grouped-by-path object when group_by_path=true (default)
_costNoCost-transparency metadata (D3.5), present when injected into the text copy of the result
base_urlNo
metadataNoPer-URL metadata when include_metadata=true
site_mapNo
statisticsNo
total_urlsNo
ranked_urlsNoPresent only when the `search` param was set
filter_statsNo
domain_filter_configNo

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds behavioral detail beyond annotations: it 'reads sitemap.xml when available, otherwise follows links' and notes the 2-credit cost, which helps set expectations about how the tool operates and what it costs.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose, followed by sibling exclusions, cost, and an example. It is slightly longer than strictly necessary because the example overlaps somewhat with the schema, but every sentence earns its place and none merely restate the name or schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 10-parameter tool with an output schema and rich annotations, the description covers the essential context: what the tool returns conceptually, when to use alternatives, the cost, and an example. It does not explain the domain_filter or search parameters, but those are fully documented in the schema, so the description is complete enough for routing and correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all 10 parameters. The description adds minimal parameter semantics beyond the schema, mostly via the example invocation that references include_sitemap and max_urls. This matches the baseline of 3 when the schema carries the parameter documentation burden.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'list a site's URLs without fetching page bodies.' It explicitly distinguishes itself from siblings by naming what it is not for ('not for page content (scrape, or crawl_deep for many pages) and not for the links on one page (extract_links)'). An agent can immediately tell this apart from scrape, crawl_deep, and extract_links.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives explicit when-to-use guidance ('list a site's URLs without fetching page bodies') and explicit exclusions with named alternatives. It also includes cost and a concrete example, which helps an agent decide if invoking this tool is appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

process_documentA
Read-onlyIdempotent

Use this to extract text from a PDF URL or file - research papers, contracts, reports. Returns structured sections, metadata, and word count. Not for ordinary web pages (scrape), though an HTML URL is accepted. Cost: 2 credits. Example: process_document({source: "https://example.com/report.pdf", sourceType: "pdf_url"})

ParametersJSON Schema
NameRequiredDescriptionDefault
sourceYesDocument source - URL or file path
optionsNoAdditional processing options (maxPages, pageRange:{start,end}, extractText, extractMetadata, outputFormat, ...)
redact_piiNoRedact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off
sourceTypeNoType of document source
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
max_inline_charsNoLargest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which the description aligns with. It adds behavioral context beyond annotations by disclosing the credit cost (2 credits), the output shape (structured sections, metadata, word count), and the accepted input boundary (PDF/file, plus HTML URL). It does not mention large-result truncation or redaction side effects, but those are detailed in the schema, so the description adds reasonable value without contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences with no filler: purpose, scope boundary, return summary, cost, and a concrete example all earn their place. The essential information is front-loaded, and the example is compact and instructive.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 7-parameter tool with no output schema, the description covers the primary use case, the input type, the core return values, and cost. The schema handles parameter-level details thoroughly. The only gap is that the description does not surface the max_inline_chars fallback behavior, which is meaningful for calling read_result, but this is adequately documented in the parameter schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all 7 parameters in detail. The description adds little beyond the example call showing source and sourceType format; it does not clarify options, redact_pii, max_inline_chars, or user_agent semantics beyond what the schema provides. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('extract text from a PDF URL or file') with example use cases (research papers, contracts, reports), and differentiates from ordinary web scraping by naming 'scrape' as the alternative. The returned outputs (structured sections, metadata, word count) are also stated, making the tool's role unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly tells the agent when to use it ('extract text from a PDF URL or file') and when not ('Not for ordinary web pages (scrape)'). It names the sibling tool category 'scrape' and even clarifies the edge case that HTML URLs are accepted yet still treated as documents. The example call and credit cost further guide correct invocation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

read_resultA
Read-onlyIdempotent

Use this to read a result that came back with truncated: true and a result_handle - the tool kept the whole result for 1 hour and returned a preview. operation:"search" finds a literal query with offsets and context, "slice" returns characters from an offset, "lines" pages by line, "json_path" reads one subtree of a JSON result (crawl_deep pages, batch results, a fetch_url JSON body). Not a fetching tool: never call the original tool again while the handle is valid, and not for a result that arrived whole. Cost: 1 credit. Example: read_result({handle: "res_…", operation: "search", query: "pricing"})

ParametersJSON Schema
NameRequiredDescriptionDefault
pathNojson_path: dotted keys and array indexes, e.g. "results[3].content" — not JSONPath
queryNosearch: the text to find, matched literally, case-insensitive
handleYesThe result_handle a truncated result returned (res_… or a batch id)
lengthNoslice: characters to return (default 10,000); lines: lines to return (default 200, max 5,000)
offsetNoslice: first character (default 0); lines: first line index (default 0)
operationYesslice: characters from offset; search: case-insensitive literal query with context and offsets; lines: a page of lines; json_path: one subtree of a JSON result
max_matchesNosearch: matches to return (default 20)
max_inline_charsNoLargest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)

Output Schema

ParametersJSON Schema
NameRequiredDescription
pathNo
textNoslice: verbatim view.slice(offset, offset + length)
toolNoThe tool that produced the stored result
viewNo
_costNoCost-transparency metadata (D3.5), present when injected into the text copy of the result
linesNo
queryNo
valueNojson_path: the subtree; null with a preview when it is over max_inline_chars
handleNo
lengthNoslice: characters returned
offsetNoslice: first character returned
matchesNosearch: matches with 200 chars of context each side
previewNo
has_moreNoslice/lines: more follows the returned range
warningsNo
operationNo
truncatedNosearch: more matches than returned; json_path: value replaced by a preview
view_pathNo
expires_atNo
first_lineNo
line_countNo
char_offsetNolines: view offset of the first returned line
total_charsNoLength of the full view
total_linesNo
value_charsNo
total_matchesNo

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds valuable behavioral context: the 1-hour retention window, the preview behavior, the credit cost, and the semantics of each operation (search, slice, lines, json_path). This goes beyond the annotations without contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single dense paragraph that front-loads the primary use case and ends with an example. It is somewhat lengthy but every sentence earns its place by covering scope, operations, exclusions, cost, and an example. A more structured layout could improve skimmability, but it remains efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given an output schema exists (not shown but present), the description need not detail return formats. It covers the main trigger, all operations, exclusions, cost, and handle validity. It does not explicitly mention error cases (e.g., expired handle), but the output schema likely handles those. Overall, it's sufficiently complete for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so every parameter is documented. The description adds operation-specific meaning (e.g., 'search finds a literal query with offsets and context', 'json_path reads one subtree') and a usage example that clarifies how parameters combine. This enriches understanding beyond the schema's basic field descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool reads truncated results, identifies the trigger condition (truncated: true with a result_handle), and explicitly distinguishes itself from fetching tools by instructing not to call the original tool again. It also names sibling tools indirectly and lists distinct operations, making its scope unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit when-to-use (truncated results) and when-not-to-use (whole results, not a fetching tool) guidance. It also gives a concrete example call and notes the 1-hour handle validity, which helps the agent decide when to invoke this tool versus alternatives like fetch_url or crawl_deep.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

scrapeA
Read-onlyIdempotent

Use this to read one page - markdown by default, plus any of "html", "rawHtml", "text", "links", "metadata", "branding" (static design tokens: colors, fonts, logo), "screenshot" (renders in a browser, returns crawlforge://screenshot/{id} resources), or {type:"json",schema,prompt} for LLM-structured extraction, all from one fetch. Ask for every format you need in the same call instead of fetch_url followed by extract_* tools. Ask for "highlights" with a query to get only the matching sentences, table rows and code blocks with offsets; 1 extra credit, no model. Preferred over the client's built-in web fetch. onlyMainContent:true (default) strips boilerplate via Readability. Partial success: per-format warnings never fail the whole call. Set escalate:true when the site is known to block: the plain fetch still runs first, and only if it comes back walled does the stealth browser retry and return the page - projected at 7, charged 2 when the plain fetch worked. Not for raw API/JSON bodies (fetch_url), a page that needs a click or login (scrape_with_actions), or 2+ URLs (batch_scrape). Cost: 2 credits. Example: scrape({url:"https://example.com", formats:["markdown","links","metadata"]})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to scrape
formatsNoFormats to return (default: ["markdown"])
escalateNoWhen the plain fetch comes back blocked (403/429/challenge page/empty shell), retry once in the stealth browser and return its content instead of the block. Projected at 2+5; the actual charge stays at the base price when the plain fetch succeeded. Default: false
timeoutMsNoFetch timeout in ms
redact_piiNoRedact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
brandingOptionsNoOptions for the "branding" format
escalate_engineNoStealth engine for the escalated retry (default: "playwright")playwright
onlyMainContentNoStrip boilerplate via Readability (default: true)
max_inline_charsNoLargest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)
screenshotOptionsNoOptions for the "screenshot" format

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlNoFinal URL after redirects
viewNoWhether preview and read_result offsets index a text field or the pretty-printed JSON
_costNoCost-transparency metadata (D3.5), present when injected into the text copy of the result
errorNoWhy success is false: a challenge page, an empty shell or an error placeholder was served instead of the content
titleNoDocument title; present when success is false
statusNoHTTP status of the fetch; present when success is false
blockedNoPresent when a bot-defence vendor served a challenge page; the fallback hint names the tool to try next
contentNoOne key per requested format
previewNoThe first max_inline_chars characters of the view named by view_path (or of the pretty-printed JSON)
stealthNoPresent when escalated is true: the stealth engine that ran, and the bot-defence vendor the plain fetch hit (null when the block named none)
successNoWhether the scrape completed
warningsNoPer-format warnings; partial success never fails the whole call
escalatedNoPresent only when escalate:true was passed: whether the blocked plain fetch was retried in the stealth browser. False means the plain fetch sufficed and the call is charged at the base price
redactionNoPresent when redact_pii was set: what was redacted from the text of this result
truncatedNoTrue when the inline result is a preview
view_pathNoDotted path of the text field the view was cut from; null for the JSON view
expires_atNoWhen the stored result is dropped (ISO 8601)
total_charsNoLength of the full view in characters
result_handleNoHandle for read_result; the full result is kept 1 hour

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true, idempotentHint=true, destructiveHint=false; the description adds rich behavior beyond them: per-format warnings never fail the whole call, onlyMainContent strips via Readability, escalate runs the plain fetch first and only retries in the stealth browser when walled, plus cost and example. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Long but dense: every sentence earns its place. Purpose and core behavior are front-loaded, then formats, exclusions, cost, and an example. The grouped clause style keeps a high-information paragraph readable without waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 12-parameter tool with nested objects and multiple formats, the description covers selection criteria, exclusions, cost model, partial-success behavior, escalation, and an example. An output schema exists, so return values need no explanation; the schema fills any remaining parameter-level details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds real meaning beyond the schema: explains branding as static design tokens, screenshot returns crawlforge:// resources, highlights query costs 1 extra credit with no model, and gives a concrete call example. It does not cover every parameter, but the schema already documents them well.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Opens with a specific verb and resource: 'Use this to read one page'. Enumerates the exact formats, and explicitly distinguishes from siblings: 'Not for raw API/JSON bodies (fetch_url), a page that needs a click or login (scrape_with_actions), or 2+ URLs (batch_scrape)'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

States when to use this tool and names concrete alternatives with the conditions that select them: fetch_url for API/JSON, scrape_with_actions for click/login, batch_scrape for 2+ URLs. Also says 'Preferred over the client's built-in web fetch' and tells when to set escalate:true.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

scrape_structuredA
Read-onlyIdempotent

Use this when you know the exact CSS selectors for the data you want - e.g. a pricing table or product list with consistent markup. More reliable than LLM extraction for well-structured pages. By default each selector is matched independently across the whole page, so the returned arrays are NOT row-aligned: data.price[0] need not belong to the same row as data.name[0]. Pass row_selector to get aligned records instead - one object per row, null for a field the row lacks. Not for pages whose markup varies or where you cannot name the selectors (extract_structured, LLM-driven). Cost: 2 credits. Example: scrape_structured({url: "https://shop.com/products", row_selector: ".product-card", selectors: {price: ".price", name: ".product-title"}})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to scrape
selectorsYesCSS selectors mapping field names to selectors. Append @attr to extract an attribute instead of text (e.g. "a.link@href", "img@src")
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
max_resultsNoMaximum number of matches to return per field when a selector matches multiple elements, or the maximum number of rows when row_selector is set
row_selectorNoCSS selector for the repeating row/container element. When set, each field in selectors is matched inside each row and data is an array of row-aligned records ({field: value|null}) instead of parallel arrays
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnly/idempotent annotations, it discloses the critical row-alignment gotcha (data.price[0] need not belong to the same row as data.name[0]), the cost of 2 credits, and the meaning of row_selector. This is exactly the kind of non-obvious behavior an agent needs before invoking.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description leads with the decision rule, then covers exclusions, the key behavioral warning, cost, and an example with no filler. Every sentence contributes necessary operational information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having no output schema, the description explains the shape of returned data (parallel arrays vs row-aligned objects) and gives enough context for an agent to invoke correctly. Together with the rich input schema, this is complete for a read-only extraction tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already covers all 6 parameters in detail, so the baseline is 3. The description adds value with a concrete usage example and clarifies how selectors and row_selector work together, but it does not substantially redefine the parameter meanings beyond the schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb and resource (scrape structured data with exact CSS selectors) and differentiates it from LLM-driven extraction. It is immediately clear this tool is for well-structured pages with known markup.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives an explicit when-to-use condition (you know exact selectors, consistent markup) and states what it is not for (varying markup or unnamed selectors), pointing to extract_structured / LLM-driven extraction as the alternative. This lets an agent select correctly among many siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

scrape_templateA
Read-onlyIdempotent

Use this when you want structured data from a well-known site or platform API without writing custom selectors. Three modes: a template id with a url (scrape_template({template:"github-repo", url:"https://github.com/user/repo"})); template:"auto" with a url, which picks the template from the URL and names its choice in the response; or template:"list" to enumerate every template with the URLs it handles. Page templates return one record - e-commerce, social, developer and news sites (shopify-product, amazon-product, github-repo, youtube-video, reddit-thread, hacker-news-front-page, producthunt-launch, stackoverflow-question, npm-package; reddit-thread reads the post from the Arctic Shift archive and reddit_search reads the comment tree). linkedin-profile and tweet are retired - those sites' robots.txt disallow every keyless path - and naming one returns the reason. List connectors return N records from one call and are driven by params instead of a url: job boards (Greenhouse, Lever, Ashby, Workable, Recruitee, Teamtailor) return a company's whole careers board, US government APIs (NHTSA VIN decode, NPI provider registry) answer keyless lookups, and shopify-collection returns a whole collection. Not for a site without a template (scrape) - template:"list" shows what exists. Cost: 1 credit. Example: scrape_template({template:"greenhouse-jobs", params:{company:"stripe"}})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoURL to scrape — required unless template is list, or params drive a list connector
paramsNoParameters for a list connector, e.g. {company:"stripe"} for greenhouse-jobs or {store:"www.allbirds.com", collection:"mens"} for shopify-collection. Use template:"list" to see which templates take params
timeoutNoRequest timeout in milliseconds
templateYesTemplate ID (e.g. github-repo), "auto" to detect one from the url, or "list" to enumerate available templates
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond annotations (readOnlyHint, openWorldHint, idempotentHint), the description discloses cost (1 credit), robots.txt handling including the recording of respect_robots:false against the API key, the retired-template behavior with the reason returned, auto-mode naming its template choice, and record-count differences between page and list templates. No contradiction with annotations exists.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long but front-loaded with the purpose and organized into modes, template catalogs, retired templates, list connectors, exclusions, cost, and example. Every sentence earns its place in terms of content, but the density is high enough that a few aggressive editors might request trimming; it remains well above the minimum viable level.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema present, the description compensates by stating return shapes: 'one record' for page templates, 'N records' for list connectors, 'names its choice' in auto mode, and 'returns the reason' for retired templates. It also covers cost, robots behavior, a full parameter-driven example, and the full catalog of supported sites, making it complete for an agent to call correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Although schema coverage is 100%, the description adds substantial meaning: it defines the three template modes, clarifies when url is required, gives concrete template IDs for both page and list connectors, and provides a full example invocation with params. It also explains philosophy of user_agent honesty and respect_robots decisions, which the schema alone does not convey.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Use this when you want structured data from a well-known site or platform API without writing custom selectors,' naming the verb, resource, and value proposition. It differentiates itself from siblings by explicitly naming scrape as the alternative for sites without a template, and by enumerating exactly which templates exist. No ambiguity remains about what the tool produces.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It starts with 'Use this when...' and later states 'Not for a site without a template (scrape),' giving an explicit exclusion and naming the alternative tool. It further explains when to use template:'list' to discover what exists and how params-driven list connectors differ from url-driven page templates, leaving no strategic decision to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

scrape_with_actionsA
Read-only

Use this when you must interact with a page before scraping - login, click buttons, fill forms, scroll, or wait for dynamic content to load - for SPAs, login-gated content, or multi-step flows. Actions: wait, click, type, press, scroll, screenshot, executeJavaScript, select (dropdowns), hover, navigate. Set browserOptions.stealth:true to run the chain in the stealth browser. robots.txt is respected on every navigation. Screenshots from this tool are stored as crawlforge://screenshot/{actionId} resources. Not for pages that render without interaction (scrape) and not as the first attempt on a blocked site (stealth_mode operation:"scrape"). Cost: 5 credits. Example: scrape_with_actions({url: "https://app.com/dashboard", actions: [{type:"click",selector:"#login"},{type:"type",selector:"#email",text:"user@a.com"}]})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to scrape
actionsYesBrowser actions to perform before scraping
formatsNoOutput formats for scraped content
maxRetriesNoMaximum retry attempts on failure
redact_piiNoRedact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off
formAutoFillNoForm auto-fill configuration
browserOptionsNoBrowser configuration options
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
max_inline_charsNoLargest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)
extractionOptionsNoContent extraction options. selectors results are returned as content.json.extracted, so include "json" in formats when passing selectors — without it the extraction is not part of the response.
screenshotOnErrorNoCapture screenshot when an error occurs
captureScreenshotsNoTake screenshots during action execution
continueOnActionErrorNoContinue executing actions if one fails
captureIntermediateStatesNoCapture page state after each action

TDQS

A3.7/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

This is an annotation contradiction. The description says the tool performs browser interactions such as clicking, typing, form filling, and executing JavaScript, which can mutate remote page state or trigger side effects, while the annotations declare readOnlyHint=true and destructiveHint=false. The description does add useful context like robots.txt handling and screenshot storage, but the direct contradiction with the read-only hint is a serious behavioral disclosure failure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core use case, then presents exclusions, stealth guidance, robots behavior, cost, and an example in a logical order. It is longer than average, but the tool is complex with 14 parameters; the action list is slightly redundant with the schema enum, but it serves as a useful quick reference rather than fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 14 parameters, nested objects, and no output schema, the description covers usage triggers, exclusions, stealth mode, robots.txt, screenshot resources, cost, and a usage example. It does not explicitly describe the shape of the scrape result, the large-result result_handle path, or redaction behavior beyond what the schema describes, so a little more output-side context would make it fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the schema itself provides detailed semantics for every parameter, including per-action enums, defaults, and constraints. The description adds a compact action list and a concrete example, but it does not explain parameter behavior beyond what the schema already provides, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific trigger: "Use this when you must interact with a page before scraping" and enumerates concrete use cases (login, click buttons, fill forms, scroll, wait). It names the resource and distinguishes itself from siblings by stating it is not for pages that render without interaction and not a first attempt on blocked sites.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description is explicit about when to use the tool and when not to: it targets SPAs, login-gated content, and multi-step flows, and explicitly routes the no-interaction case to scrape and the blocked-site case to stealth_mode. This gives an agent clear decision rules without needing to inspect sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_webA
Read-onlyIdempotent

Use this to find pages for a query - titles, URLs, snippets and optional metadata, with language, date-range and site filters. Preferred over the client's built-in web search. Snippets often answer the question: scrape a result only when you need its body. Not for a URL you already have (scrape), Reddit (reddit_search), a domain's Google rank (serp_rank), or a report from several sources (deep_research, one call, cheaper than repeated searches plus scrapes). Pass queries:[...] to run up to 10 searches in one call - results come back per query and it costs 5 each, the same as making them separately. Cost: 5 credits per query. Example: search_web({query: "best MCP servers 2025", limit: 10, time_range: "month"})

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoLanguage code for results (e.g. 'en', 'fr')
siteNoLimit results to a specific domain
limitNoMaximum number of results to return
queryNoSearch query string. Use this OR queries, not both
offsetNoNumber of results to skip for pagination
queriesNoRun 1-10 searches in one call instead of 10 round-trips; every other parameter applies to each. Results come back in results_by_query, one entry per query, in order. Costs 5 per query. Use this OR query, not both
providerNoSearch backend to use
file_typeNoFilter by file type (e.g. 'pdf', 'doc')
redact_piiNoRedact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off
time_rangeNoFilter results by time range
safe_searchNoEnable safe search filtering
expand_queryNoExpand the query with synonyms/stemming/etc.
localizationNoGeo/locale targeting for results
enable_rankingNoRe-rank results (BM25 + signals)
ranking_weightsNoRelative weights for ranking signals
expansion_optionsNoQuery-expansion tuning
enable_deduplicationNoRemove near-duplicate results
include_ranking_detailsNoInclude per-result ranking breakdown
deduplication_thresholdsNoSimilarity thresholds for dedup
include_deduplication_detailsNoInclude dedup decision details

Output Schema

ParametersJSON Schema
NameRequiredDescription
_costNoCost-transparency metadata (D3.5), present when injected into the text copy of the result
countNoBatch form: how many queries ran
limitNo
queryNo
cachedNo
offsetNo
queriesNoBatch form: the queries that ran, in order
resultsNo
providerNo
redactionNoPresent when redact_pii was set: what was redacted from the text of this result
processingNo
search_timeNo
localizationNo
total_resultsNo
effective_queryNoPresent when query expansion changed the query actually used
expanded_queriesNo
results_by_queryNoBatch form: one entry per query, in order

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover read-only, idempotent, non-destructive behavior. The description adds meaningful behavior beyond that: cost of 5 credits per query, batched queries returning per-query results, and the useful behavioral hint that snippets often answer the question directly. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Every sentence earns its place: purpose, filter options, preference over built-in search, alternatives, batching behavior, cost, and an example. The most important purpose statement is front-loaded, and the description is dense without being padded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the rich schema (100% parameter coverage, output schema present) and strong annotations, the description fills the remaining gaps effectively: when to use which sibling, batching semantics, cost, and a usage example. An agent has everything needed to invoke this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3 even without additional description. The description reinforces parameters like query, limit, time_range, and queries, and gives a concrete example, but it mostly restates what the schema already documents rather than adding new semantic depth.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'find pages for a query' and explicitly lists the return contents (titles, URLs, snippets, optional metadata). It clearly distinguishes itself from siblings by naming search_web, scrape, reddit_search, serp_rank, and deep_research as different tools for different tasks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives explicit when-to-use ('Preferred over the client's built-in web search'), when-not-to-use ('Not for a URL you already have', Reddit, Google rank, or multi-source reports), and names the exact alternative tool for each case. Also advises scraping only when the snippet is insufficient, which is practical routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

serp_rankA
Read-onlyIdempotent

Use this to check where a domain ranks in Google's ORGANIC results for a keyword - real SERP position, not Custom Search order. Returns the target's organic rank, the ranking URL, and every position it holds. Not for general search (search_web). Requires DataForSEO credentials and returns configured:false without them - do not retry in that case. Cost: 5 credits (0 when unconfigured). Example: serp_rank({keyword: "managed wordpress hosting", target: "dashboardhosting.com", location_name: "United States"})

ParametersJSON Schema
NameRequiredDescriptionDefault
depthNoHow many results to scan, 10-200 (default 20; DataForSEO bills ~$0.002 per 10 and gets slower the deeper it goes)
deviceNoDevice to emulate
targetYesDomain or URL to locate in the results (e.g. 'example.com')
keywordYesThe search query to check ranking for
language_codeNoLanguage code (e.g. 'en')
location_codeNoNumeric DataForSEO location code (overrides location_name)
location_nameNoLocation, e.g. 'United States' or 'London,England,United Kingdom'

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlNoURL of the target's best-ranking result
costNoUSD charged by DataForSEO for this lookup (separate from CrawlForge credits)
noteNoPresent when configured=false, explains how to enable
_costNoCost-transparency metadata (D3.5), present when injected into the text copy of the result
foundNoWhether the target appeared anywhere in the scanned SERP
titleNo
deviceNo
targetNoBare target domain, normalized
keywordNo
resultsNoTop organic competitors as Google actually ranks them (capped)
checkUrlNoLink to view the real SERP on DataForSEO
locationNo
positionNoBest (lowest) organic rank; null = not within top `depth`
checkedAtNo
configuredNoFalse when DATAFORSEO_LOGIN/PASSWORD are unset — no rank was fabricated
allPositionsNoEvery position the target holds on this SERP
depthScannedNo
rankAbsoluteNo
organicResultsNo
seResultsCountNo

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already establish readOnly/idempotent/non-destructive safety, so the bar is lower; the description adds valuable extras: external DataForSEO dependency, credential requirement, unconfigured failure mode, cost implications (5 credits, 0 unconfigured), and a no-retry rule. It does not disclose rate limits or pagination, but those are not necessary for a read-only lookup with an output schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is tight and front-loaded: the core purpose appears first, followed by the sibling exclusion, operational caveat, cost, and example. Every sentence earns its place and none repeats the schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only external-SERP lookup with full schema coverage and an output schema, the description covers what an agent needs: purpose, scope, credentials, failure handling, cost, and example inputs. No critical behavioral or invocation context is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all 7 parameters. The description mainly reinforces keyword/target semantics and gives a concrete example with location_name, but does not add much meaning beyond that. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and object: 'check where a domain ranks in Google's ORGANIC results for a keyword.' It explicitly distinguishes from Custom Search order and names the sibling search_web as the wrong tool for general search, so an agent can select it accurately.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives explicit routing guidance: 'Not for general search (search_web).' It also supplies operational prerequisites (DataForSEO credentials), defines the unconfigured failure value (configured:false), and tells the agent not to retry in that case. An example invocation further clarifies expected usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

stealth_modeA

Use this when a site blocks normal scraping - Cloudflare, Datadome, or other bot-detection systems. Renders in a Playwright browser with randomized fingerprints, human behavior simulation, WebRTC/canvas spoofing. operation:"scrape" is the one-shot path: it creates a context, navigates, returns the requested formats and tears down. The create_context -> create_page -> cleanup operations remain for multi-step work. robots.txt is respected on every navigation. Not a first choice: try scrape first and switch here after a 403/429/CAPTCHA/challenge page or an empty shell. Cost: 5 credits per browser operation; configure, enable, disable, get_stats and cleanup cost 1. Example: stealth_mode({operation:"scrape", url:"https://example.com", formats:["markdown","links"]})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoURL to scrape — required for operation:"scrape"
engineNoBrowser engine: "playwright" (Chromium, default) or "camoufox" (Firefox-based, higher anti-detect score — install with npm install camoufox)playwright
formatsNoFormats to return from operation:"scrape" (default: ["markdown"]). "screenshot" returns a crawlforge://screenshot/{id} resource URI.
verboseNoReturn the full generated fingerprint from create_context instead of a summary
wait_forNoExtra wait after page load, in ms — for content that renders after DOMContentLoaded
contextIdNoBrowser context ID for page operations
operationNoStealth operation to performconfigure
urlToTestNoURL to navigate to when creating a page
redact_piiNoRedact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off
stealthConfigNoStealth browser configuration with anti-detection settings
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
max_inline_charsNoLargest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond annotations that only flag readOnly=false, the description discloses concrete behavioral traits: randomized fingerprints, human behavior simulation, WebRTC/canvas spoofing, robots.txt respect on every navigation, one-shot teardown, and credit costs per operation. It also clarifies the side-effect of setting respect_robots to false (recorded against the API key). These add value beyond what annotations convey, though it doesn't cover rate limits or response error shapes.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one dense paragraph, but every sentence carries decision-relevant information: when to use, what it does, operation modes, robots handling, cost model, and an example. Some structure (bullets for cost or operation modes) would improve scannability, but there is no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 12 parameters, nested objects, multiple operations, and no output schema, the description covers the key contextual elements: the anti-bot problem it solves, the two usage patterns, robots.txt policy, credit cost, and an example. It does not explicitly state what the return payload looks like beyond 'returns the requested formats,' but the schema already describes max_inline_chars, redact_pii, and result_handle, so the missing piece is minor.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so parameters are already documented, but the description enriches the operation parameter by explaining the one-shot scrape lifecycle versus the multi-step alternatives and gives a concrete invocation example ('stealth_mode({operation:"scrape", url:"https://example.com", formats:["markdown","links"]})'). It also attaches cost semantics to specific operations (5 credits per browser operation vs 1 for configure/enable/disable/get_stats/cleanup), meaning beyond the raw enum values in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific trigger ('when a site blocks normal scraping – Cloudflare, Datadome, or other bot-detection systems') and names the resource and action ('Renders in a Playwright browser... operation:"scrape"'). It also explicitly distinguishes itself from the normal 'scrape' sibling with 'Not a first choice: try scrape first and switch here after a 403/429/CAPTCHA/challenge page or an empty shell.' This gives an agent a precise selection basis.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides explicit when-to-use guidance ('Use this when a site blocks normal scraping...'), a clear alternative ('try scrape first'), and the exact failure conditions that justify switching (403/429/CAPTCHA/challenge page or empty shell). It also separates the one-shot scrape path from the multi-step create_context -> create_page -> cleanup sequence, so an agent knows which operations fit single vs repeated work.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

summarize_contentA
Read-onlyIdempotent

Use this to condense text you already hold into a briefing, comparison, or shorter LLM context - extractive (sentence selection) or abstractive (rewrite via Ollama/sampling). Takes text, not a URL: pass the markdown from a scrape result. Not needed for text short enough to summarise in context yourself. Cost: 4 credits. Example: summarize_content({text: "..long article..", options: {summaryLength: "short", summaryType: "abstractive"}})

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesThe text content to summarize
optionsNoSummarization options

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare the safety profile (readOnlyHint, idempotentHint, destructiveHint false). The description adds meaningful behavioral context: it accepts text not URLs, performs extractive or abstractive summarization, leverages Ollama/sampling for abstractive rewrites, and costs 4 credits. This goes beyond what annotations provide, though it doesn't disclose return format or edge-case behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but organized: it starts with the core purpose, then input constraint, a usage heuristic, cost, and a concrete example. No sentence is wasted; the structure front-loads the main action and defers cost and example details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a two-parameter tool with high schema coverage but an empty options schema, the description covers how to invoke it (text plus optional options), what input type to pass, and an example. It lacks an explicit statement of return value shape, which matters because there is no output schema; however, the core invocation requirements are adequately specified.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% for both properties, but the 'options' property is an empty object in the schema, providing no usable semantics. The description compensates with an example showing summaryLength and summaryType, and clarifies that 'text' should be markdown from a scrape result. This adds real meaning beyond the schema, especially where the schema is empty.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('condense') and names the resource ('text you already hold'), and distinguishes itself from URL-input tools by stating 'Takes text, not a URL.' It also lists output forms (briefing, comparison, shorter LLM context) and methods (extractive/abstractive), which clarifies exactly what it does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit when-to-use context: summarizing text already held, and an explicit when-not-to-use: 'Not needed for text short enough to summarise in context yourself.' It also directs users to pass markdown from a scrape result, implying the preceding step. It doesn't name a specific sibling tool as an alternative, but it gives enough routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

track_changesA

Use this to monitor a URL for content changes over time - competitor pricing, regulation updates, product availability. Start with operation:"create_baseline", then periodically use operation:"compare" to diff; repeated compare calls on the same URL are expected. Supports webhooks and scheduled monitoring. Not for a one-off read (scrape). Cost: 3 credits. Example: track_changes({url: "https://example.com/pricing", operation: "create_baseline"})

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoThe URL to track changes for (optional for list_scheduled_monitors)
htmlNoHTML content to compare against baseline
contentNoContent to compare against baseline
operationNoTracking operation to performcompare
user_agentNoOverride the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.
queryOptionsNoQuery options for history and stats retrieval
exportOptionsNoExport options for change history data
respect_robotsNoRespect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.
storageOptionsNoStorage and history retention settings
trackingOptionsNoOptions for how changes are tracked and compared
alertRuleOptionsNoAlert rule configuration for change notifications
dashboardOptionsNoDashboard display options
monitoringOptionsNoMonitoring schedule and notification settings
notificationOptionsNoNotification configuration for webhooks and Slack
scheduledMonitorOptionsNoScheduled monitoring: recurring compare + notify, optional plain-English goal

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With readOnlyHint=false and idempotentHint=false, the description carries the burden of indicating stateful behavior; it does so by describing baseline creation, repeated comparisons, and a 3-credit cost. It also discloses that webhooks and scheduled monitoring are supported, adding context beyond the bare annotations. There is no contradiction with the annotation flags.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences plus a small example, front-loading the core purpose before workflow and exclusions. Every sentence adds information; no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description adequately covers the basic monitoring workflow and cost, but the tool exposes many operations (get_history, get_stats, alert rules, dashboards, exports) that are not summarized. With no output schema, agents are given little about return values; however the schema descriptions fill most parameter-level gaps, so the description is minimally viable but not complete for the full feature set.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, giving a baseline of 3, but the description adds operational sequencing for the operation parameter (create_baseline then compare) and a concrete example invocation. This clarifies parameter use beyond the enum list, justifying a point above baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('monitor') and resource ('a URL for content changes over time'), lists concrete use cases, and explicitly distinguishes from sibling tools ('Not for a one-off read (scrape)'). This is a clear, non-tautological definition that an agent can separate from scrape and related one-off extraction tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives explicit workflow guidance: 'Start with operation: create_baseline, then periodically use operation: compare' and notes that repeated compare calls are expected. It also provides a when-not ('Not for a one-off read (scrape)') that names the alternative, though it doesn't enumerate all sibling distinctions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 29 tool updatesv6.0.0
    • Changedagent2 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / schema / propertyNames
        Added value: +{
        +  "type": "string"
        +}
    • Changedanalyze_content2 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • changedInput schema / properties / options / additionalProperties
        Previous value: -trueNew value: +{}
    • Changedbatch_scrape8 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / extractionSchema / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • removedInput schema / properties / jobOptions / additionalProperties
        Removed value: -false
      • addedInput schema / properties / max_inline_chars
        Added value: +{
        +  "description": "Largest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)",
        +  "maximum": 10000000,
        +  "minimum": 1000,
        +  "type": "integer"
        +}
      • addedInput schema / properties / redact_pii
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "boolean"
        +    },
        +    {
        +      "properties": {
        +        "entities": {
        +          "description": "Which classes to redact, case-insensitive: EMAIL, PHONE, FINANCIAL, SECRET, plus PERSON and LOCATION when mode is \"model\". Omitted or empty means all four regex classes (and both model classes in \"model\" mode). An unknown name, or a model-only name without mode:\"model\", is rejected",
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "mode": {
        +          "description": "\"fast\" (default) is regex only and free; \"model\" adds an Ollama NER pass for PERSON and LOCATION (+3 credits once per call)",
        +          "enum": [
        +            "fast",
        +            "model"
        +          ],
        +          "type": "string"
        +        },
        +        "replace_style": {
        +          "description": "\"tag\" (default) writes <EMAIL>, \"mask\" writes [REDACTED], \"remove\" deletes the value",
        +          "enum": [
        +            "tag",
        +            "mask",
        +            "remove"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  ],
        +  "description": "Redact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off"
        +}
      • changedInput schema / properties / urls / items / anyOf
        Previous value: -[
        -  {
        -    "format": "uri",
        -    "type": "string"
        -  },
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "headers": {
        -        "additionalProperties": {
        -          "type": "string"
        -        },
        -        "type": "object"
        -      },
        -      "metadata": {
        -        "additionalProperties": {},
        -        "type": "object"
        -      },
        -      "selectors": {
        -        "additionalProperties": {
        -          "type": "string"
        -        },
        -        "type": "object"
        -      },
        -      "timeout": {
        -        "maximum": 30000,
        -        "minimum": 1000,
        -        "type": "number"
        -      },
        -      "url": {
        -        "format": "uri",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "url"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "format": "uri",
        +    "type": "string"
        +  },
        +  {
        +    "properties": {
        +      "headers": {
        +        "additionalProperties": {
        +          "type": "string"
        +        },
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "metadata": {
        +        "additionalProperties": {},
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "selectors": {
        +        "additionalProperties": {
        +          "type": "string"
        +        },
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "timeout": {
        +        "maximum": 30000,
        +        "minimum": 1000,
        +        "type": "number"
        +      },
        +      "url": {
        +        "format": "uri",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "url"
        +    ],
        +    "type": "object"
        +  }
        +]
      • removedInput schema / properties / webhook / additionalProperties
        Removed value: -false
      • addedInput schema / properties / webhook / properties / headers / propertyNames
        Added value: +{
        +  "type": "string"
        +}
    • Changedcrawl_deep28 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • removedInput schema / properties / domain_filter / additionalProperties
        Removed value: -false
      • addedInput schema / properties / domain_filter / properties / blacklist / items
        Added value: +{}
      • addedInput schema / properties / domain_filter / properties / domain_rules / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / domain_filter / properties / whitelist / items
        Added value: +{}
      • removedInput schema / properties / link_analysis_options / additionalProperties
        Removed value: -false
      • addedInput schema / properties / max_inline_chars
        Added value: +{
        +  "description": "Largest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)",
        +  "maximum": 10000000,
        +  "minimum": 1000,
        +  "type": "integer"
        +}
      • addedInput schema / properties / redact_pii
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "boolean"
        +    },
        +    {
        +      "properties": {
        +        "entities": {
        +          "description": "Which classes to redact, case-insensitive: EMAIL, PHONE, FINANCIAL, SECRET, plus PERSON and LOCATION when mode is \"model\". Omitted or empty means all four regex classes (and both model classes in \"model\" mode). An unknown name, or a model-only name without mode:\"model\", is rejected",
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "mode": {
        +          "description": "\"fast\" (default) is regex only and free; \"model\" adds an Ollama NER pass for PERSON and LOCATION (+3 credits once per call)",
        +          "enum": [
        +            "fast",
        +            "model"
        +          ],
        +          "type": "string"
        +        },
        +        "replace_style": {
        +          "description": "\"tag\" (default) writes <EMAIL>, \"mask\" writes [REDACTED], \"remove\" deletes the value",
        +          "enum": [
        +            "tag",
        +            "mask",
        +            "remove"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  ],
        +  "description": "Redact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off"
        +}
      • removedInput schema / properties / session / additionalProperties
        Removed value: -false
      • addedInput schema / properties / session / properties / headers / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • removedInput schema / properties / session / properties / initialRequest / additionalProperties
        Removed value: -false
      • addedInput schema / properties / session / properties / initialRequest / properties / headers / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • changedOutput schema / properties / _cost / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / expires_at
        Added value: +{
        +  "description": "When the stored result is dropped (ISO 8601)",
        +  "type": "string"
        +}
      • addedOutput schema / properties / preview
        Added value: +{
        +  "description": "The first max_inline_chars characters of the view named by view_path (or of the pretty-printed JSON)",
        +  "type": "string"
        +}
      • addedOutput schema / properties / redaction
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "Present when redact_pii was set: what was redacted from the text of this result",
        +  "properties": {
        +    "count": {
        +      "description": "Total spans replaced",
        +      "type": "number"
        +    },
        +    "entities": {
        +      "additionalProperties": {
        +        "type": "number"
        +      },
        +      "description": "How many spans were replaced, by entity class; a class with no hits is omitted",
        +      "propertyNames": {
        +        "type": "string"
        +      },
        +      "type": "object"
        +    },
        +    "mode": {
        +      "description": "\"fast\" is the free regex pass; \"model\" added an Ollama NER pass for PERSON and LOCATION",
        +      "enum": [
        +        "fast",
        +        "model"
        +      ],
        +      "type": "string"
        +    },
        +    "model_ran": {
        +      "description": "mode \"model\" only: whether a model actually answered. False means no LLM route existed and the model surcharge was not charged",
        +      "type": "boolean"
        +    }
        +  },
        +  "type": "object"
        +}
      • addedOutput schema / properties / result_handle
        Added value: +{
        +  "description": "Handle for read_result; the full result is kept 1 hour",
        +  "type": "string"
        +}
      • changedOutput schema / properties / results / items / additionalProperties
        Previous value: -trueNew value: +{}
      • changedOutput schema / properties / session / additionalProperties
        Previous value: -trueNew value: +{}
      • changedOutput schema / properties / site_structure / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / site_structure / properties / depth_distribution / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / site_structure / properties / file_types / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / site_structure / properties / path_depth_distribution / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / site_structure / properties / path_patterns / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / total_chars
        Added value: +{
        +  "description": "Length of the full view in characters",
        +  "type": "number"
        +}
      • addedOutput schema / properties / truncated
        Added value: +{
        +  "description": "True when the inline result is a preview",
        +  "type": "boolean"
        +}
      • addedOutput schema / properties / view
        Added value: +{
        +  "description": "Whether preview and read_result offsets index a text field or the pretty-printed JSON",
        +  "enum": [
        +    "text",
        +    "json"
        +  ],
        +  "type": "string"
        +}
      • addedOutput schema / properties / view_path
        Added value: +{
        +  "description": "Dotted path of the text field the view was cut from; null for the JSON view",
        +  "type": [
        +    "string",
        +    "null"
        +  ]
        +}
    • Changeddeep_research9 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • removedInput schema / properties / llmConfig / additionalProperties
        Removed value: -false
      • removedInput schema / properties / llmConfig / properties / anthropic / additionalProperties
        Removed value: -false
      • removedInput schema / properties / llmConfig / properties / ollama / additionalProperties
        Removed value: -false
      • removedInput schema / properties / llmConfig / properties / openai / additionalProperties
        Removed value: -false
      • addedInput schema / properties / max_inline_chars
        Added value: +{
        +  "description": "Largest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)",
        +  "maximum": 10000000,
        +  "minimum": 1000,
        +  "type": "integer"
        +}
      • removedInput schema / properties / queryExpansion / additionalProperties
        Removed value: -false
      • removedInput schema / properties / webhook / additionalProperties
        Removed value: -false
      • addedInput schema / properties / webhook / properties / headers / propertyNames
        Added value: +{
        +  "type": "string"
        +}
    • Changedextract_content4 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / max_inline_chars
        Added value: +{
        +  "description": "Largest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)",
        +  "maximum": 10000000,
        +  "minimum": 1000,
        +  "type": "integer"
        +}
      • changedInput schema / properties / options / additionalProperties
        Previous value: -trueNew value: +{}
      • addedInput schema / properties / redact_pii
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "boolean"
        +    },
        +    {
        +      "properties": {
        +        "entities": {
        +          "description": "Which classes to redact, case-insensitive: EMAIL, PHONE, FINANCIAL, SECRET, plus PERSON and LOCATION when mode is \"model\". Omitted or empty means all four regex classes (and both model classes in \"model\" mode). An unknown name, or a model-only name without mode:\"model\", is rejected",
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "mode": {
        +          "description": "\"fast\" (default) is regex only and free; \"model\" adds an Ollama NER pass for PERSON and LOCATION (+3 credits once per call)",
        +          "enum": [
        +            "fast",
        +            "model"
        +          ],
        +          "type": "string"
        +        },
        +        "replace_style": {
        +          "description": "\"tag\" (default) writes <EMAIL>, \"mask\" writes [REDACTED], \"remove\" deletes the value",
        +          "enum": [
        +            "tag",
        +            "mask",
        +            "remove"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  ],
        +  "description": "Redact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off"
        +}
    • Changedextract_embedded_state2 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / max_inline_chars
        Added value: +{
        +  "description": "Largest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)",
        +  "maximum": 10000000,
        +  "minimum": 1000,
        +  "type": "integer"
        +}
    • Changedextract_links1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedextract_metadata1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedextract_structured11 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • removedInput schema / properties / llmConfig / additionalProperties
        Removed value: -false
      • removedInput schema / properties / schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / schema / properties / properties / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / selectorHints / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • changedOutput schema / properties / _cost / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / data / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • changedOutput schema / properties / provenance / additionalProperties
        Previous value: -trueNew value: +{}
      • changedOutput schema / properties / provenance / properties / unverified / items / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / schema_used / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • changedOutput schema / properties / validation / additionalProperties
        Previous value: -trueNew value: +{}
    • Changedextract_text2 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / redact_pii
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "boolean"
        +    },
        +    {
        +      "properties": {
        +        "entities": {
        +          "description": "Which classes to redact, case-insensitive: EMAIL, PHONE, FINANCIAL, SECRET, plus PERSON and LOCATION when mode is \"model\". Omitted or empty means all four regex classes (and both model classes in \"model\" mode). An unknown name, or a model-only name without mode:\"model\", is rejected",
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "mode": {
        +          "description": "\"fast\" (default) is regex only and free; \"model\" adds an Ollama NER pass for PERSON and LOCATION (+3 credits once per call)",
        +          "enum": [
        +            "fast",
        +            "model"
        +          ],
        +          "type": "string"
        +        },
        +        "replace_style": {
        +          "description": "\"tag\" (default) writes <EMAIL>, \"mask\" writes [REDACTED], \"remove\" deletes the value",
        +          "enum": [
        +            "tag",
        +            "mask",
        +            "remove"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  ],
        +  "description": "Redact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off"
        +}
    • Changedextract_with_llm2 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / schema / propertyNames
        Added value: +{
        +  "type": "string"
        +}
    • Changedfetch_url3 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / headers / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / max_inline_chars
        Added value: +{
        +  "description": "Largest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)",
        +  "maximum": 10000000,
        +  "minimum": 1000,
        +  "type": "integer"
        +}
    • Changedgenerate_llms_txt4 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • removedInput schema / properties / analysisOptions / additionalProperties
        Removed value: -false
      • removedInput schema / properties / outputOptions / additionalProperties
        Removed value: -false
      • addedInput schema / properties / outputOptions / properties / contactEmail / pattern
        Added value: +"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"
    • Changedget_batch_results1 field changed
      • removedInput schema / additionalProperties
        Removed value: -false
    • Changedlocalization11 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • removedInput schema / properties / browserOptions / additionalProperties
        Removed value: -false
      • addedInput schema / properties / browserOptions / properties / extraHTTPHeaders / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedInput schema / properties / customHeaders / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • removedInput schema / properties / geoLocation / additionalProperties
        Removed value: -false
      • removedInput schema / properties / proxySettings / additionalProperties
        Removed value: -false
      • removedInput schema / properties / proxySettings / properties / fallback / additionalProperties
        Removed value: -false
      • removedInput schema / properties / proxySettings / properties / rotation / additionalProperties
        Removed value: -false
      • removedInput schema / properties / response / additionalProperties
        Removed value: -false
      • removedInput schema / properties / searchParams / additionalProperties
        Removed value: -false
      • addedInput schema / properties / searchParams / properties / headers / propertyNames
        Added value: +{
        +  "type": "string"
        +}
    • Changedmap_site12 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • removedInput schema / properties / domain_filter / additionalProperties
        Removed value: -false
      • changedOutput schema / properties / _cost / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / metadata / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • changedOutput schema / properties / ranked_urls / items / additionalProperties
        Previous value: -trueNew value: +{}
      • changedOutput schema / properties / site_map / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / site_map / properties / depth_levels / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / site_map / properties / sections / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • changedOutput schema / properties / statistics / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / statistics / properties / file_extensions / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • changedOutput schema / properties / statistics / properties / url_lengths / additionalProperties
        Previous value: -trueNew value: +{}
      • changedOutput schema / properties / urls / anyOf
        Previous value: -[
        -  {
        -    "items": {
        -      "type": "string"
        -    },
        -    "type": "array"
        -  },
        -  {
        -    "additionalProperties": {
        -      "items": {
        -        "type": "string"
        -      },
        -      "type": "array"
        -    },
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "items": {
        +      "type": "string"
        +    },
        +    "type": "array"
        +  },
        +  {
        +    "additionalProperties": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "propertyNames": {
        +      "type": "string"
        +    },
        +    "type": "object"
        +  }
        +]
    • Changedprocess_document4 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / max_inline_chars
        Added value: +{
        +  "description": "Largest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)",
        +  "maximum": 10000000,
        +  "minimum": 1000,
        +  "type": "integer"
        +}
      • changedInput schema / properties / options / additionalProperties
        Previous value: -trueNew value: +{}
      • addedInput schema / properties / redact_pii
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "boolean"
        +    },
        +    {
        +      "properties": {
        +        "entities": {
        +          "description": "Which classes to redact, case-insensitive: EMAIL, PHONE, FINANCIAL, SECRET, plus PERSON and LOCATION when mode is \"model\". Omitted or empty means all four regex classes (and both model classes in \"model\" mode). An unknown name, or a model-only name without mode:\"model\", is rejected",
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "mode": {
        +          "description": "\"fast\" (default) is regex only and free; \"model\" adds an Ollama NER pass for PERSON and LOCATION (+3 credits once per call)",
        +          "enum": [
        +            "fast",
        +            "model"
        +          ],
        +          "type": "string"
        +        },
        +        "replace_style": {
        +          "description": "\"tag\" (default) writes <EMAIL>, \"mask\" writes [REDACTED], \"remove\" deletes the value",
        +          "enum": [
        +            "tag",
        +            "mask",
        +            "remove"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  ],
        +  "description": "Redact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off"
        +}
    • Addedread_result
    • Changedreddit_search4 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • changedOutput schema / properties / _cost / additionalProperties
        Previous value: -trueNew value: +{}
      • changedOutput schema / properties / post / anyOf
        Previous value: -[
        -  {
        -    "$ref": "#/properties/results/items/anyOf/0"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": {},
        +    "properties": {
        +      "author": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "created_iso": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "created_utc": {
        +        "type": [
        +          "number",
        +          "null"
        +        ]
        +      },
        +      "id": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "num_comments": {
        +        "type": [
        +          "number",
        +          "null"
        +        ]
        +      },
        +      "permalink": {
        +        "description": "Full reddit.com URL of the post",
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "score": {
        +        "type": [
        +          "number",
        +          "null"
        +        ]
        +      },
        +      "selftext": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "selftext_truncated": {
        +        "type": "boolean"
        +      },
        +      "subreddit": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "title": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "url": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      }
        +    },
        +    "type": "object"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / results / items / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": true,
        -    "properties": {
        -      "author": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "created_iso": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "created_utc": {
        -        "type": [
        -          "number",
        -          "null"
        -        ]
        -      },
        -      "id": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "num_comments": {
        -        "type": [
        -          "number",
        -          "null"
        -        ]
        -      },
        -      "permalink": {
        -        "description": "Full reddit.com URL of the post",
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "score": {
        -        "type": [
        -          "number",
        -          "null"
        -        ]
        -      },
        -      "selftext": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "selftext_truncated": {
        -        "type": "boolean"
        -      },
        -      "subreddit": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "title": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "url": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      }
        -    },
        -    "type": "object"
        -  },
        -  {
        -    "additionalProperties": true,
        -    "properties": {
        -      "author": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "body": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "body_truncated": {
        -        "type": "boolean"
        -      },
        -      "created_iso": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "created_utc": {
        -        "type": [
        -          "number",
        -          "null"
        -        ]
        -      },
        -      "id": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "link_id": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "parent_id": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "permalink": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "score": {
        -        "type": [
        -          "number",
        -          "null"
        -        ]
        -      },
        -      "subreddit": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      }
        -    },
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": {},
        +    "properties": {
        +      "author": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "created_iso": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "created_utc": {
        +        "type": [
        +          "number",
        +          "null"
        +        ]
        +      },
        +      "id": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "num_comments": {
        +        "type": [
        +          "number",
        +          "null"
        +        ]
        +      },
        +      "permalink": {
        +        "description": "Full reddit.com URL of the post",
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "score": {
        +        "type": [
        +          "number",
        +          "null"
        +        ]
        +      },
        +      "selftext": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "selftext_truncated": {
        +        "type": "boolean"
        +      },
        +      "subreddit": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "title": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "url": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      }
        +    },
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": {},
        +    "properties": {
        +      "author": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "body": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "body_truncated": {
        +        "type": "boolean"
        +      },
        +      "created_iso": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "created_utc": {
        +        "type": [
        +          "number",
        +          "null"
        +        ]
        +      },
        +      "id": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "link_id": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "parent_id": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "permalink": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      },
        +      "score": {
        +        "type": [
        +          "number",
        +          "null"
        +        ]
        +      },
        +      "subreddit": {
        +        "type": [
        +          "string",
        +          "null"
        +        ]
        +      }
        +    },
        +    "type": "object"
        +  }
        +]
    • Changedscrape33 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • removedInput schema / properties / brandingOptions / additionalProperties
        Removed value: -false
      • addedInput schema / properties / escalate
        Added value: +{
        +  "default": false,
        +  "description": "When the plain fetch comes back blocked (403/429/challenge page/empty shell), retry once in the stealth browser and return its content instead of the block. Projected at 2+5; the actual charge stays at the base price when the plain fetch succeeded. Default: false",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / escalate_engine
        Added value: +{
        +  "default": "playwright",
        +  "description": "Stealth engine for the escalated retry (default: \"playwright\")",
        +  "enum": [
        +    "playwright",
        +    "camoufox"
        +  ],
        +  "type": "string"
        +}
      • changedInput schema / properties / formats / items / anyOf
        Previous value: -[
        -  {
        -    "enum": [
        -      "markdown",
        -      "html",
        -      "rawHtml",
        -      "text",
        -      "links",
        -      "metadata",
        -      "screenshot",
        -      "branding"
        -    ],
        -    "type": "string"
        -  },
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "prompt": {
        -        "description": "Extraction instruction for the LLM",
        -        "type": "string"
        -      },
        -      "schema": {
        -        "additionalProperties": {},
        -        "description": "JSON schema for extraction",
        -        "type": "object"
        -      },
        -      "type": {
        -        "const": "json",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "enum": [
        +      "markdown",
        +      "html",
        +      "rawHtml",
        +      "text",
        +      "links",
        +      "metadata",
        +      "screenshot",
        +      "branding"
        +    ],
        +    "type": "string"
        +  },
        +  {
        +    "properties": {
        +      "prompt": {
        +        "description": "Extraction instruction for the LLM",
        +        "type": "string"
        +      },
        +      "schema": {
        +        "additionalProperties": {},
        +        "description": "JSON schema for extraction",
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "type": {
        +        "const": "json",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "max_highlights": {
        +        "default": 10,
        +        "description": "How many units to return (default 10)",
        +        "maximum": 50,
        +        "minimum": 1,
        +        "type": "integer"
        +      },
        +      "mode": {
        +        "default": "extractive",
        +        "description": "\"extractive\" (default) returns verbatim page text, no model; \"model\" adds an LLM step (+3 credits)",
        +        "enum": [
        +          "extractive",
        +          "model"
        +        ],
        +        "type": "string"
        +      },
        +      "query": {
        +        "description": "What to look for; the matching sentences, table rows and code blocks come back verbatim with offsets into the markdown",
        +        "maxLength": 500,
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "highlights",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "query"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "properties": {
        +      "mode": {
        +        "default": "extractive",
        +        "description": "\"extractive\" (default) returns verbatim page text, no model; \"model\" adds an LLM step (+3 credits)",
        +        "enum": [
        +          "extractive",
        +          "model"
        +        ],
        +        "type": "string"
        +      },
        +      "question": {
        +        "description": "The question to answer from the page; the evidence units come back verbatim with offsets",
        +        "maxLength": 500,
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "question",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "question"
        +    ],
        +    "type": "object"
        +  }
        +]
      • addedInput schema / properties / max_inline_chars
        Added value: +{
        +  "description": "Largest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)",
        +  "maximum": 10000000,
        +  "minimum": 1000,
        +  "type": "integer"
        +}
      • addedInput schema / properties / redact_pii
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "boolean"
        +    },
        +    {
        +      "properties": {
        +        "entities": {
        +          "description": "Which classes to redact, case-insensitive: EMAIL, PHONE, FINANCIAL, SECRET, plus PERSON and LOCATION when mode is \"model\". Omitted or empty means all four regex classes (and both model classes in \"model\" mode). An unknown name, or a model-only name without mode:\"model\", is rejected",
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "mode": {
        +          "description": "\"fast\" (default) is regex only and free; \"model\" adds an Ollama NER pass for PERSON and LOCATION (+3 credits once per call)",
        +          "enum": [
        +            "fast",
        +            "model"
        +          ],
        +          "type": "string"
        +        },
        +        "replace_style": {
        +          "description": "\"tag\" (default) writes <EMAIL>, \"mask\" writes [REDACTED], \"remove\" deletes the value",
        +          "enum": [
        +            "tag",
        +            "mask",
        +            "remove"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  ],
        +  "description": "Redact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off"
        +}
      • removedInput schema / properties / screenshotOptions / additionalProperties
        Removed value: -false
      • changedOutput schema / properties / _cost / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / blocked
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "Present when a bot-defence vendor served a challenge page; the fallback hint names the tool to try next",
        +  "properties": {
        +    "evidence": {
        +      "type": "string"
        +    },
        +    "vendor": {
        +      "type": "string"
        +    }
        +  },
        +  "type": "object"
        +}
      • changedOutput schema / properties / content / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / content / properties / answer
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "Result of the {type:\"question\"} format",
        +  "properties": {
        +    "evidence": {
        +      "description": "The units the answer rests on, verbatim with offsets",
        +      "items": {
        +        "additionalProperties": {},
        +        "properties": {
        +          "kind": {
        +            "enum": [
        +              "sentence",
        +              "table_row",
        +              "code_block"
        +            ],
        +            "type": "string"
        +          },
        +          "length": {
        +            "type": "number"
        +          },
        +          "offset": {
        +            "description": "JS string index into the markdown format of this call",
        +            "type": "number"
        +          },
        +          "score": {
        +            "description": "BM25 relevance to the query, higher is better",
        +            "type": "number"
        +          },
        +          "text": {
        +            "description": "Verbatim page text: markdown.slice(offset, offset + length) === text",
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "grounded": {
        +      "description": "True when every number and proper noun in text appears in the evidence or the question; always true in extractive mode",
        +      "type": "boolean"
        +    },
        +    "text": {
        +      "description": "Extractive mode: the evidence texts joined; model mode: the model's answer",
        +      "type": "string"
        +    }
        +  },
        +  "type": "object"
        +}
      • addedOutput schema / properties / content / properties / branding / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / content / properties / highlights
        Added value: +{
        +  "description": "Result of the {type:\"highlights\"} format: the units matching the query, best first, verbatim with offsets",
        +  "items": {
        +    "additionalProperties": {},
        +    "properties": {
        +      "kind": {
        +        "enum": [
        +          "sentence",
        +          "table_row",
        +          "code_block"
        +        ],
        +        "type": "string"
        +      },
        +      "length": {
        +        "type": "number"
        +      },
        +      "offset": {
        +        "description": "JS string index into the markdown format of this call",
        +        "type": "number"
        +      },
        +      "score": {
        +        "description": "BM25 relevance to the query, higher is better",
        +        "type": "number"
        +      },
        +      "text": {
        +        "description": "Verbatim page text: markdown.slice(offset, offset + length) === text",
        +        "type": "string"
        +      }
        +    },
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
      • changedOutput schema / properties / content / properties / links / additionalProperties
        Previous value: -trueNew value: +{}
      • changedOutput schema / properties / content / properties / links / properties / links / items / additionalProperties
        Previous value: -trueNew value: +{}
      • changedOutput schema / properties / content / properties / metadata / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / content / properties / metadata / properties / og_tags / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / content / properties / metadata / properties / twitter_tags / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • changedOutput schema / properties / content / properties / screenshots / items / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / error
        Added value: +{
        +  "description": "Why success is false: a challenge page, an empty shell or an error placeholder was served instead of the content",
        +  "type": "string"
        +}
      • addedOutput schema / properties / escalated
        Added value: +{
        +  "description": "Present only when escalate:true was passed: whether the blocked plain fetch was retried in the stealth browser. False means the plain fetch sufficed and the call is charged at the base price",
        +  "type": "boolean"
        +}
      • addedOutput schema / properties / expires_at
        Added value: +{
        +  "description": "When the stored result is dropped (ISO 8601)",
        +  "type": "string"
        +}
      • addedOutput schema / properties / preview
        Added value: +{
        +  "description": "The first max_inline_chars characters of the view named by view_path (or of the pretty-printed JSON)",
        +  "type": "string"
        +}
      • addedOutput schema / properties / redaction
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "Present when redact_pii was set: what was redacted from the text of this result",
        +  "properties": {
        +    "count": {
        +      "description": "Total spans replaced",
        +      "type": "number"
        +    },
        +    "entities": {
        +      "additionalProperties": {
        +        "type": "number"
        +      },
        +      "description": "How many spans were replaced, by entity class; a class with no hits is omitted",
        +      "propertyNames": {
        +        "type": "string"
        +      },
        +      "type": "object"
        +    },
        +    "mode": {
        +      "description": "\"fast\" is the free regex pass; \"model\" added an Ollama NER pass for PERSON and LOCATION",
        +      "enum": [
        +        "fast",
        +        "model"
        +      ],
        +      "type": "string"
        +    },
        +    "model_ran": {
        +      "description": "mode \"model\" only: whether a model actually answered. False means no LLM route existed and the model surcharge was not charged",
        +      "type": "boolean"
        +    }
        +  },
        +  "type": "object"
        +}
      • addedOutput schema / properties / result_handle
        Added value: +{
        +  "description": "Handle for read_result; the full result is kept 1 hour",
        +  "type": "string"
        +}
      • addedOutput schema / properties / status
        Added value: +{
        +  "description": "HTTP status of the fetch; present when success is false",
        +  "type": "number"
        +}
      • addedOutput schema / properties / stealth
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "Present when escalated is true: the stealth engine that ran, and the bot-defence vendor the plain fetch hit (null when the block named none)",
        +  "properties": {
        +    "engine": {
        +      "type": "string"
        +    },
        +    "vendor_detected": {
        +      "type": [
        +        "string",
        +        "null"
        +      ]
        +    }
        +  },
        +  "type": "object"
        +}
      • addedOutput schema / properties / title
        Added value: +{
        +  "description": "Document title; present when success is false",
        +  "type": "string"
        +}
      • addedOutput schema / properties / total_chars
        Added value: +{
        +  "description": "Length of the full view in characters",
        +  "type": "number"
        +}
      • addedOutput schema / properties / truncated
        Added value: +{
        +  "description": "True when the inline result is a preview",
        +  "type": "boolean"
        +}
      • addedOutput schema / properties / view
        Added value: +{
        +  "description": "Whether preview and read_result offsets index a text field or the pretty-printed JSON",
        +  "enum": [
        +    "text",
        +    "json"
        +  ],
        +  "type": "string"
        +}
      • addedOutput schema / properties / view_path
        Added value: +{
        +  "description": "Dotted path of the text field the view was cut from; null for the JSON view",
        +  "type": [
        +    "string",
        +    "null"
        +  ]
        +}
    • Changedscrape_structured3 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / max_results / maximum
        Added value: +9007199254740991
      • addedInput schema / properties / selectors / propertyNames
        Added value: +{
        +  "type": "string"
        +}
    • Changedscrape_template2 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / params / propertyNames
        Added value: +{
        +  "type": "string"
        +}
    • Changedscrape_with_actions11 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • removedInput schema / properties / actions / items / additionalProperties
        Removed value: -false
      • addedInput schema / properties / actions / items / properties / args / items
        Added value: +{}
      • removedInput schema / properties / actions / items / properties / position / additionalProperties
        Removed value: -false
      • removedInput schema / properties / browserOptions / additionalProperties
        Removed value: -false
      • removedInput schema / properties / extractionOptions / additionalProperties
        Removed value: -false
      • addedInput schema / properties / extractionOptions / properties / selectors / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • removedInput schema / properties / formAutoFill / additionalProperties
        Removed value: -false
      • removedInput schema / properties / formAutoFill / properties / fields / items / additionalProperties
        Removed value: -false
      • addedInput schema / properties / max_inline_chars
        Added value: +{
        +  "description": "Largest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)",
        +  "maximum": 10000000,
        +  "minimum": 1000,
        +  "type": "integer"
        +}
      • addedInput schema / properties / redact_pii
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "boolean"
        +    },
        +    {
        +      "properties": {
        +        "entities": {
        +          "description": "Which classes to redact, case-insensitive: EMAIL, PHONE, FINANCIAL, SECRET, plus PERSON and LOCATION when mode is \"model\". Omitted or empty means all four regex classes (and both model classes in \"model\" mode). An unknown name, or a model-only name without mode:\"model\", is rejected",
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "mode": {
        +          "description": "\"fast\" (default) is regex only and free; \"model\" adds an Ollama NER pass for PERSON and LOCATION (+3 credits once per call)",
        +          "enum": [
        +            "fast",
        +            "model"
        +          ],
        +          "type": "string"
        +        },
        +        "replace_style": {
        +          "description": "\"tag\" (default) writes <EMAIL>, \"mask\" writes [REDACTED], \"remove\" deletes the value",
        +          "enum": [
        +            "tag",
        +            "mask",
        +            "remove"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  ],
        +  "description": "Redact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off"
        +}
    • Changedsearch_web25 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • removedInput schema / properties / deduplication_thresholds / additionalProperties
        Removed value: -false
      • removedInput schema / properties / expansion_options / additionalProperties
        Removed value: -false
      • removedInput schema / properties / localization / additionalProperties
        Removed value: -false
      • removedInput schema / properties / localization / properties / customLocation / additionalProperties
        Removed value: -false
      • addedInput schema / properties / queries
        Added value: +{
        +  "description": "Run 1-10 searches in one call instead of 10 round-trips; every other parameter applies to each. Results come back in results_by_query, one entry per query, in order. Costs 5 per query. Use this OR query, not both",
        +  "items": {
        +    "minLength": 1,
        +    "type": "string"
        +  },
        +  "maxItems": 10,
        +  "minItems": 1,
        +  "type": "array"
        +}
      • changedInput schema / properties / query / description
        Previous value: -"Search query string"New value: +"Search query string. Use this OR queries, not both"
      • removedInput schema / properties / ranking_weights / additionalProperties
        Removed value: -false
      • addedInput schema / properties / redact_pii
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "boolean"
        +    },
        +    {
        +      "properties": {
        +        "entities": {
        +          "description": "Which classes to redact, case-insensitive: EMAIL, PHONE, FINANCIAL, SECRET, plus PERSON and LOCATION when mode is \"model\". Omitted or empty means all four regex classes (and both model classes in \"model\" mode). An unknown name, or a model-only name without mode:\"model\", is rejected",
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "mode": {
        +          "description": "\"fast\" (default) is regex only and free; \"model\" adds an Ollama NER pass for PERSON and LOCATION (+3 credits once per call)",
        +          "enum": [
        +            "fast",
        +            "model"
        +          ],
        +          "type": "string"
        +        },
        +        "replace_style": {
        +          "description": "\"tag\" (default) writes <EMAIL>, \"mask\" writes [REDACTED], \"remove\" deletes the value",
        +          "enum": [
        +            "tag",
        +            "mask",
        +            "remove"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  ],
        +  "description": "Redact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off"
        +}
      • removedInput schema / required
        Removed value: -[
        -  "query"
        -]
      • changedOutput schema / properties / _cost / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / count
        Added value: +{
        +  "description": "Batch form: how many queries ran",
        +  "type": "number"
        +}
      • changedOutput schema / properties / localization / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": true,
        -    "properties": {
        -      "applied": {
        -        "type": "boolean"
        -      },
        -      "countryCode": {
        -        "type": "string"
        -      },
        -      "geoTargeting": {
        -        "type": "boolean"
        -      },
        -      "language": {
        -        "type": "string"
        -      },
        -      "searchDomain": {
        -        "type": "string"
        -      }
        -    },
        -    "type": "object"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": {},
        +    "properties": {
        +      "applied": {
        +        "type": "boolean"
        +      },
        +      "countryCode": {
        +        "type": "string"
        +      },
        +      "geoTargeting": {
        +        "type": "boolean"
        +      },
        +      "language": {
        +        "type": "string"
        +      },
        +      "searchDomain": {
        +        "type": "string"
        +      }
        +    },
        +    "type": "object"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / processing / additionalProperties
        Previous value: -trueNew value: +{}
      • changedOutput schema / properties / processing / properties / deduplication / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": {},
        -    "type": "object"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": {},
        +    "propertyNames": {
        +      "type": "string"
        +    },
        +    "type": "object"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / processing / properties / query_expansion / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": {},
        -    "type": "object"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": {},
        +    "propertyNames": {
        +      "type": "string"
        +    },
        +    "type": "object"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / processing / properties / ranking / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": {},
        -    "type": "object"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": {},
        +    "propertyNames": {
        +      "type": "string"
        +    },
        +    "type": "object"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / provider / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / provider / properties / capabilities / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / queries
        Added value: +{
        +  "description": "Batch form: the queries that ran, in order",
        +  "items": {
        +    "type": "string"
        +  },
        +  "type": "array"
        +}
      • addedOutput schema / properties / redaction
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "Present when redact_pii was set: what was redacted from the text of this result",
        +  "properties": {
        +    "count": {
        +      "description": "Total spans replaced",
        +      "type": "number"
        +    },
        +    "entities": {
        +      "additionalProperties": {
        +        "type": "number"
        +      },
        +      "description": "How many spans were replaced, by entity class; a class with no hits is omitted",
        +      "propertyNames": {
        +        "type": "string"
        +      },
        +      "type": "object"
        +    },
        +    "mode": {
        +      "description": "\"fast\" is the free regex pass; \"model\" added an Ollama NER pass for PERSON and LOCATION",
        +      "enum": [
        +        "fast",
        +        "model"
        +      ],
        +      "type": "string"
        +    },
        +    "model_ran": {
        +      "description": "mode \"model\" only: whether a model actually answered. False means no LLM route existed and the model surcharge was not charged",
        +      "type": "boolean"
        +    }
        +  },
        +  "type": "object"
        +}
      • changedOutput schema / properties / results / items / additionalProperties
        Previous value: -trueNew value: +{}
      • addedOutput schema / properties / results / items / properties / metadata / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / results / items / properties / pagemap / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / results_by_query
        Added value: +{
        +  "description": "Batch form: one entry per query, in order",
        +  "items": {
        +    "additionalProperties": {},
        +    "properties": {
        +      "error": {
        +        "description": "Present when this query failed; the other queries in the batch are unaffected",
        +        "type": "string"
        +      },
        +      "query": {
        +        "type": "string"
        +      },
        +      "results": {
        +        "items": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "displayLink": {
        +              "type": "string"
        +            },
        +            "formattedUrl": {
        +              "type": "string"
        +            },
        +            "htmlSnippet": {
        +              "type": "string"
        +            },
        +            "link": {
        +              "type": "string"
        +            },
        +            "metadata": {
        +              "additionalProperties": {},
        +              "propertyNames": {
        +                "type": "string"
        +              },
        +              "type": "object"
        +            },
        +            "pagemap": {
        +              "additionalProperties": {},
        +              "propertyNames": {
        +                "type": "string"
        +              },
        +              "type": "object"
        +            },
        +            "snippet": {
        +              "type": "string"
        +            },
        +            "title": {
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "type": "array"
        +      }
        +    },
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
    • Changedserp_rank7 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • changedOutput schema / properties / _cost / additionalProperties
        Previous value: -trueNew value: +{}
      • changedOutput schema / properties / allPositions / items / additionalProperties
        Previous value: -trueNew value: +{}
      • removedOutput schema / properties / results / items / $ref
        Removed value: -"#/properties/allPositions/items"
      • addedOutput schema / properties / results / items / additionalProperties
        Added value: +{}
      • addedOutput schema / properties / results / items / properties
        Added value: +{
        +  "domain": {
        +    "type": "string"
        +  },
        +  "position": {
        +    "type": [
        +      "number",
        +      "null"
        +    ]
        +  },
        +  "rankAbsolute": {
        +    "type": [
        +      "number",
        +      "null"
        +    ]
        +  },
        +  "snippet": {
        +    "type": [
        +      "string",
        +      "null"
        +    ]
        +  },
        +  "title": {
        +    "type": [
        +      "string",
        +      "null"
        +    ]
        +  },
        +  "url": {
        +    "type": [
        +      "string",
        +      "null"
        +    ]
        +  }
        +}
      • addedOutput schema / properties / results / items / type
        Added value: +"object"
    • Changedstealth_mode8 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • addedInput schema / properties / max_inline_chars
        Added value: +{
        +  "description": "Largest result to return inline, in characters of its JSON. Over it, the call returns a preview plus a result_handle for read_result instead of the whole result (default 40,000; env CRAWLFORGE_MAX_INLINE_CHARS)",
        +  "maximum": 10000000,
        +  "minimum": 1000,
        +  "type": "integer"
        +}
      • addedInput schema / properties / redact_pii
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "boolean"
        +    },
        +    {
        +      "properties": {
        +        "entities": {
        +          "description": "Which classes to redact, case-insensitive: EMAIL, PHONE, FINANCIAL, SECRET, plus PERSON and LOCATION when mode is \"model\". Omitted or empty means all four regex classes (and both model classes in \"model\" mode). An unknown name, or a model-only name without mode:\"model\", is rejected",
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "mode": {
        +          "description": "\"fast\" (default) is regex only and free; \"model\" adds an Ollama NER pass for PERSON and LOCATION (+3 credits once per call)",
        +          "enum": [
        +            "fast",
        +            "model"
        +          ],
        +          "type": "string"
        +        },
        +        "replace_style": {
        +          "description": "\"tag\" (default) writes <EMAIL>, \"mask\" writes [REDACTED], \"remove\" deletes the value",
        +          "enum": [
        +            "tag",
        +            "mask",
        +            "remove"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  ],
        +  "description": "Redact personal data from the text this call returns, before it reaches your context window. true means the free regex pass over EMAIL, PHONE, FINANCIAL and SECRET. The result carries redaction:{entities,count}. Default: off"
        +}
      • removedInput schema / properties / stealthConfig / additionalProperties
        Removed value: -false
      • removedInput schema / properties / stealthConfig / properties / antiDetection / additionalProperties
        Removed value: -false
      • removedInput schema / properties / stealthConfig / properties / customViewport / additionalProperties
        Removed value: -false
      • removedInput schema / properties / stealthConfig / properties / fingerprinting / additionalProperties
        Removed value: -false
      • removedInput schema / properties / stealthConfig / properties / proxyRotation / additionalProperties
        Removed value: -false
    • Changedsummarize_content2 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • changedInput schema / properties / options / additionalProperties
        Previous value: -trueNew value: +{}
    • Changedtrack_changes14 fields changed
      • removedInput schema / additionalProperties
        Removed value: -false
      • removedInput schema / properties / alertRuleOptions / additionalProperties
        Removed value: -false
      • removedInput schema / properties / dashboardOptions / additionalProperties
        Removed value: -false
      • removedInput schema / properties / exportOptions / additionalProperties
        Removed value: -false
      • removedInput schema / properties / monitoringOptions / additionalProperties
        Removed value: -false
      • removedInput schema / properties / notificationOptions / additionalProperties
        Removed value: -false
      • removedInput schema / properties / notificationOptions / properties / slack / additionalProperties
        Removed value: -false
      • removedInput schema / properties / notificationOptions / properties / webhook / additionalProperties
        Removed value: -false
      • addedInput schema / properties / notificationOptions / properties / webhook / properties / headers / propertyNames
        Added value: +{
        +  "type": "string"
        +}
      • removedInput schema / properties / queryOptions / additionalProperties
        Removed value: -false
      • removedInput schema / properties / scheduledMonitorOptions / additionalProperties
        Removed value: -false
      • removedInput schema / properties / storageOptions / additionalProperties
        Removed value: -false
      • removedInput schema / properties / trackingOptions / additionalProperties
        Removed value: -false
      • removedInput schema / properties / trackingOptions / properties / significanceThresholds / additionalProperties
        Removed value: -false
  2. 3 tool updatesv5.6.6
    • Changeddeep_research3 fields changed
      • changedInput schema / properties / llmConfig / description
        Previous value: -"LLM provider configuration for AI-powered analysis"New value: +"LLM provider configuration for AI-powered analysis. provider 'auto' (default) uses a configured cloud key if there is one, else the local Ollama (http://localhost:11434, no key); 'ollama' forces the local model; 'openai'/'anthropic' need the matching API key"
      • addedInput schema / properties / llmConfig / properties / ollama
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "embeddingModel": {
        +      "type": "string"
        +    },
        +    "model": {
        +      "type": "string"
        +    }
        +  },
        +  "type": "object"
        +}
      • changedInput schema / properties / llmConfig / properties / provider / enum
        Previous value: -[
        -  "auto",
        -  "openai",
        -  "anthropic"
        -]New value: +[
        +  "auto",
        +  "openai",
        +  "anthropic",
        +  "ollama"
        +]
    • Changedreddit_search5 fields changed
      • changedInput schema / properties / source / description
        Previous value: -"Backend: auto routes + falls back (default). reddit_api uses the official Reddit Data API — only when REDDIT_CLIENT_ID/REDDIT_CLIENT_SECRET are set; serves posts/thread, not comment search"New value: +"Backend: auto routes + falls back (default). web_discovery serves only unscoped keyword searches (web search finds the posts, the archive supplies the rows). reddit_api uses the official Reddit Data API — only when REDDIT_CLIENT_ID/REDDIT_CLIENT_SECRET are set; serves posts/thread, not comment search"
      • changedInput schema / properties / source / enum
        Previous value: -[
        -  "auto",
        -  "arctic_shift",
        -  "pullpush",
        -  "reddit_api"
        -]New value: +[
        +  "auto",
        +  "arctic_shift",
        +  "pullpush",
        +  "reddit_api",
        +  "web_discovery"
        +]
      • addedOutput schema / properties / discovered
        Added value: +{
        +  "description": "web_discovery: how many post ids the site-restricted web search surfaced before archive hydration",
        +  "type": "number"
        +}
      • addedOutput schema / properties / posts_searched
        Added value: +{
        +  "description": "web_discovery comments mode: how many discovered posts had their comments searched before limit was reached",
        +  "type": "number"
        +}
      • addedOutput schema / properties / window_applied
        Added value: +{
        +  "description": "arctic_shift comments mode: the after-window (\"7d\"/\"3d\"/\"1d\") the search was narrowed to after the full-history search timed out; absent when the caller set after or no narrowing was needed",
        +  "type": "string"
        +}
    • Changedscrape_with_actions1 field changed
      • changedInput schema / properties / extractionOptions / description
        Previous value: -"Content extraction options"New value: +"Content extraction options. selectors results are returned as content.json.extracted, so include \"json\" in formats when passing selectors — without it the extraction is not part of the response."
  3. 18 tool updatesv5.4.0
    • Changedbatch_scrape2 fields changed
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
    • Changedcrawl_deep2 fields changed
      • addedOutput schema / properties / site_structure / properties / depth_distribution / description
        Added value: +"Pages per crawl depth (links from the start URL)"
      • addedOutput schema / properties / site_structure / properties / path_depth_distribution
        Added value: +{
        +  "additionalProperties": {
        +    "type": "number"
        +  },
        +  "description": "Pages per URL path-segment depth",
        +  "type": "object"
        +}
    • Changedextract_content2 fields changed
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
    • Addedextract_embedded_state
    • Changedextract_links2 fields changed
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
    • Changedextract_metadata3 fields changed
      • addedInput schema / properties / json_ld_types
        Added value: +{
        +  "description": "Filter the returned JSON-LD to nodes of these schema.org types, e.g. [\"Product\",\"Offer\"]. Subtypes match their parent: \"Event\" returns MusicEvent, \"Offer\" returns AggregateOffer, \"ItemList\" returns BreadcrumbList. Nodes are found at any depth, including inside @graph and nested inside a parent node. When set, json_ld carries only the matching nodes instead of the raw dump, and json_ld_type_counts reports how many matched per requested type. Documented types: ItemList, Product, Offer, Event, JobPosting, RealEstateListing — any other schema.org type is matched exactly.",
        +  "items": {
        +    "type": "string"
        +  },
        +  "type": "array"
        +}
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
    • Changedextract_structured5 fields changed
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
      • addedInput schema / properties / verify_numbers
        Added value: +{
        +  "default": true,
        +  "description": "Numeric provenance guard (default: true): every price or numeric value the LLM returns must appear literally in the page source, else it is returned as null with a reason in `provenance.unverified`. Set false to get the model's raw numbers back, including ones it derived (a count, a sum, a total) rather than read off the page.",
        +  "type": "boolean"
        +}
      • addedOutput schema / properties / provenance
        Added value: +{
        +  "additionalProperties": true,
        +  "properties": {
        +    "enabled": {
        +      "description": "Whether the numeric provenance guard ran",
        +      "type": "boolean"
        +    },
        +    "nulled": {
        +      "description": "Numeric values replaced with null because the source does not contain them",
        +      "type": "number"
        +    },
        +    "skipped": {
        +      "description": "\"empty_source\" when there was nothing to check against",
        +      "type": "string"
        +    },
        +    "unverified": {
        +      "items": {
        +        "additionalProperties": true,
        +        "properties": {
        +          "path": {
        +            "description": "Path to the field, e.g. configurations[2].price",
        +            "type": "string"
        +          },
        +          "reason": {
        +            "description": "\"not_found_in_source\"",
        +            "type": "string"
        +          },
        +          "value": {
        +            "description": "The value that was removed"
        +          }
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "verified": {
        +      "description": "Numeric values found literally in the page source",
        +      "type": "number"
        +    }
        +  },
        +  "type": "object"
        +}
      • addedOutput schema / properties / success
        Added value: +{
        +  "description": "False when the extraction errored or a required field came back missing or empty",
        +  "type": "boolean"
        +}
    • Changedextract_text2 fields changed
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
    • Changedextract_with_llm3 fields changed
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
      • addedInput schema / properties / verify_numbers
        Added value: +{
        +  "default": true,
        +  "description": "Numeric provenance guard (default: true): every price or numeric value the LLM returns must appear literally in the page source, else it is returned as null with a reason in `provenance.unverified`. Set false to get the model's raw numbers back, including ones it derived (a count, a sum, a total) rather than read off the page.",
        +  "type": "boolean"
        +}
    • Changedfetch_url2 fields changed
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
    • Changedmap_site2 fields changed
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
    • Changedprocess_document2 fields changed
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
    • Changedscrape2 fields changed
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
    • Changedscrape_structured4 fields changed
      • changedInput schema / properties / max_results / description
        Previous value: -"Maximum number of matches to return per field when a selector matches multiple elements"New value: +"Maximum number of matches to return per field when a selector matches multiple elements, or the maximum number of rows when row_selector is set"
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / row_selector
        Added value: +{
        +  "description": "CSS selector for the repeating row/container element. When set, each field in selectors is matched inside each row and data is an array of row-aligned records ({field: value|null}) instead of parallel arrays",
        +  "type": "string"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
    • Changedscrape_template5 fields changed
      • addedInput schema / properties / params
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "Parameters for a list connector, e.g. {company:\"stripe\"} for greenhouse-jobs or {store:\"www.allbirds.com\", collection:\"mens\"} for shopify-collection. Use template:\"list\" to see which templates take params",
        +  "type": "object"
        +}
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • changedInput schema / properties / template / description
        Previous value: -"Template ID (e.g. github-repo) or list to enumerate available templates"New value: +"Template ID (e.g. github-repo), \"auto\" to detect one from the url, or \"list\" to enumerate available templates"
      • changedInput schema / properties / url / description
        Previous value: -"URL to scrape — required unless template is list"New value: +"URL to scrape — required unless template is list, or params drive a list connector"
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
    • Changedscrape_with_actions7 fields changed
      • changedInput schema / properties / actions / items / properties / type / enum
        Previous value: -[
        -  "wait",
        -  "click",
        -  "type",
        -  "press",
        -  "scroll",
        -  "screenshot",
        -  "executeJavaScript"
        -]New value: +[
        +  "wait",
        +  "click",
        +  "type",
        +  "press",
        +  "scroll",
        +  "screenshot",
        +  "executeJavaScript",
        +  "select",
        +  "hover",
        +  "navigate"
        +]
      • addedInput schema / properties / actions / items / properties / url
        Added value: +{
        +  "description": "navigate: URL to navigate to — goes through the same SSRF and robots.txt gate as the initial URL",
        +  "format": "uri",
        +  "type": "string"
        +}
      • addedInput schema / properties / actions / items / properties / value
        Added value: +{
        +  "description": "select: option to choose, matched by value or label",
        +  "type": "string"
        +}
      • addedInput schema / properties / actions / items / properties / values
        Added value: +{
        +  "description": "select: options to choose in a multi-select, matched by value or label",
        +  "items": {
        +    "type": "string"
        +  },
        +  "type": "array"
        +}
      • addedInput schema / properties / actions / items / properties / waitUntil
        Added value: +{
        +  "description": "navigate: when to consider navigation complete",
        +  "enum": [
        +    "load",
        +    "domcontentloaded",
        +    "networkidle",
        +    "commit"
        +  ],
        +  "type": "string"
        +}
      • addedInput schema / properties / browserOptions / properties / stealth
        Added value: +{
        +  "default": false,
        +  "description": "Run the action chain in the stealth browser (randomized fingerprint, WebRTC/canvas spoofing) instead of the standard browser pool. Renders JavaScript; it does not solve challenges.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
    • Changedstealth_mode6 fields changed
      • addedInput schema / properties / formats
        Added value: +{
        +  "default": [
        +    "markdown"
        +  ],
        +  "description": "Formats to return from operation:\"scrape\" (default: [\"markdown\"]). \"screenshot\" returns a crawlforge://screenshot/{id} resource URI.",
        +  "items": {
        +    "enum": [
        +      "markdown",
        +      "html",
        +      "text",
        +      "links",
        +      "metadata",
        +      "screenshot"
        +    ],
        +    "type": "string"
        +  },
        +  "type": "array"
        +}
      • changedInput schema / properties / operation / enum
        Previous value: -[
        -  "configure",
        -  "enable",
        -  "disable",
        -  "create_context",
        -  "create_page",
        -  "get_stats",
        -  "cleanup"
        -]New value: +[
        +  "scrape",
        +  "configure",
        +  "enable",
        +  "disable",
        +  "create_context",
        +  "create_page",
        +  "get_stats",
        +  "cleanup"
        +]
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / url
        Added value: +{
        +  "description": "URL to scrape — required for operation:\"scrape\"",
        +  "format": "uri",
        +  "type": "string"
        +}
      • addedInput schema / properties / verbose
        Added value: +{
        +  "default": false,
        +  "description": "Return the full generated fingerprint from create_context instead of a summary",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / wait_for
        Added value: +{
        +  "description": "Extra wait after page load, in ms — for content that renders after DOMContentLoaded",
        +  "maximum": 30000,
        +  "minimum": 0,
        +  "type": "number"
        +}
    • Changedtrack_changes2 fields changed
      • addedInput schema / properties / respect_robots
        Added value: +{
        +  "description": "Respect the target site's robots.txt (default: true). Setting this to false is honoured, returns a warning in the response, and is recorded against your API key — it is your decision, not a silent default.",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / user_agent
        Added value: +{
        +  "description": "Override the outbound User-Agent. CrawlForge identifies itself honestly by default; use this only for targets you have your own agreement with.",
        +  "type": "string"
        +}
  4. 3 tool updatesv5.1.0
    • Changedcrawl_deep2 fields changed
      • addedOutput schema / properties / cached
        Added value: +{
        +  "description": "True when this response was replayed from an earlier crawl rather than crawled now; crawled_at gives its age",
        +  "type": "boolean"
        +}
      • addedOutput schema / properties / crawled_at
        Added value: +{
        +  "description": "When the pages were actually fetched (ISO 8601)",
        +  "type": "string"
        +}
    • Changedextract_structured1 field changed
      • changedOutput schema / properties / extraction_method / description
        Previous value: -"\"llm\" | \"css_fallback\" | \"none\""New value: +"\"llm\" | \"css_fallback\" | \"keyword_fallback\" | \"none\""
    • Addedreddit_search
  5. 1 tool updatev5.0.5
    • Changedserp_rank1 field changed
      • changedInput schema / properties / depth / description
        Previous value: -"How many results to scan, 10-200 (100 = 1 page of cost)"New value: +"How many results to scan, 10-200 (default 20; DataForSEO bills ~$0.002 per 10 and gets slower the deeper it goes)"
  6. 27 tool updatesv5.0.4
    • Changedagent1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedanalyze_content2 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedInput schema / properties / options / additionalProperties
        Previous value: -falseNew value: +true
    • Changedbatch_scrape1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedcrawl_deep2 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "_cost": {
        +      "additionalProperties": true,
        +      "description": "Cost-transparency metadata (D3.5), present when injected into the text copy of the result",
        +      "properties": {
        +        "actual": {
        +          "description": "Credits actually charged (0 in creator mode, half-rate on error)",
        +          "type": "number"
        +        },
        +        "projected": {
        +          "description": "Credits projected for this call before execution",
        +          "type": "number"
        +        },
        +        "projection_note": {
        +          "description": "Human-readable note about how the cost was projected",
        +          "type": "string"
        +        },
        +        "remaining_credits": {
        +          "description": "Credits remaining on the account after this call, if known",
        +          "type": [
        +            "number",
        +            "null"
        +          ]
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "crawl_depth": {
        +      "type": "number"
        +    },
        +    "domain_filter_config": {
        +      "anyOf": [
        +        {},
        +        {
        +          "type": "null"
        +        }
        +      ]
        +    },
        +    "duration_ms": {
        +      "type": "number"
        +    },
        +    "error": {
        +      "type": "string"
        +    },
        +    "error_count": {
        +      "type": "number"
        +    },
        +    "errors": {
        +      "items": {},
        +      "type": "array"
        +    },
        +    "link_analysis": {
        +      "anyOf": [
        +        {},
        +        {
        +          "type": "null"
        +        }
        +      ]
        +    },
        +    "pages_crawled": {
        +      "type": "number"
        +    },
        +    "pages_found": {
        +      "type": "number"
        +    },
        +    "pages_per_second": {
        +      "type": "number"
        +    },
        +    "results": {
        +      "items": {
        +        "additionalProperties": true,
        +        "properties": {
        +          "content": {
        +            "type": "string"
        +          },
        +          "content_length": {
        +            "type": "number"
        +          },
        +          "depth": {
        +            "type": "number"
        +          },
        +          "links_count": {
        +            "type": "number"
        +          },
        +          "metadata": {},
        +          "timestamp": {
        +            "type": [
        +              "string",
        +              "number"
        +            ]
        +          },
        +          "title": {
        +            "type": "string"
        +          },
        +          "truncated": {
        +            "type": "boolean"
        +          },
        +          "url": {
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "session": {
        +      "additionalProperties": true,
        +      "properties": {
        +        "cookies_captured": {
        +          "type": "number"
        +        },
        +        "enabled": {
        +          "type": "boolean"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "site_structure": {
        +      "additionalProperties": true,
        +      "properties": {
        +        "depth_distribution": {
        +          "additionalProperties": {
        +            "type": "number"
        +          },
        +          "type": "object"
        +        },
        +        "file_types": {
        +          "additionalProperties": {
        +            "type": "number"
        +          },
        +          "type": "object"
        +        },
        +        "path_patterns": {
        +          "additionalProperties": {
        +            "type": "number"
        +          },
        +          "type": "object"
        +        },
        +        "subdomains": {
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "total_pages": {
        +          "type": "number"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "stats": {},
        +    "success": {
        +      "description": "False only when the crawl was cancelled via elicitation decline",
        +      "type": "boolean"
        +    },
        +    "url": {
        +      "type": "string"
        +    }
        +  },
        +  "type": "object"
        +}
    • Changeddeep_research1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedextract_content2 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedInput schema / properties / options / additionalProperties
        Previous value: -falseNew value: +true
    • Changedextract_links1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedextract_metadata1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedextract_structured2 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "_cost": {
        +      "additionalProperties": true,
        +      "description": "Cost-transparency metadata (D3.5), present when injected into the text copy of the result",
        +      "properties": {
        +        "actual": {
        +          "description": "Credits actually charged (0 in creator mode, half-rate on error)",
        +          "type": "number"
        +        },
        +        "projected": {
        +          "description": "Credits projected for this call before execution",
        +          "type": "number"
        +        },
        +        "projection_note": {
        +          "description": "Human-readable note about how the cost was projected",
        +          "type": "string"
        +        },
        +        "remaining_credits": {
        +          "description": "Credits remaining on the account after this call, if known",
        +          "type": [
        +            "number",
        +            "null"
        +          ]
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "confidence": {
        +      "type": "number"
        +    },
        +    "data": {
        +      "additionalProperties": {},
        +      "description": "Extracted fields matching the requested schema",
        +      "type": "object"
        +    },
        +    "error": {
        +      "type": "string"
        +    },
        +    "extractionNotes": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "extraction_method": {
        +      "description": "\"llm\" | \"css_fallback\" | \"none\"",
        +      "type": "string"
        +    },
        +    "processingTime": {
        +      "type": "number"
        +    },
        +    "schema_used": {
        +      "additionalProperties": {},
        +      "type": "object"
        +    },
        +    "url": {
        +      "type": "string"
        +    },
        +    "validation": {
        +      "additionalProperties": true,
        +      "properties": {
        +        "errors": {
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "valid": {
        +          "type": "boolean"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  },
        +  "type": "object"
        +}
    • Changedextract_text1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedextract_with_llm1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedfetch_url1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedgenerate_llms_txt4 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedInput schema / properties / analysisOptions / properties / checkSecurity / default
        Previous value: -trueNew value: +false
      • addedInput schema / properties / analysisOptions / properties / probeRateLimit
        Added value: +{
        +  "default": false,
        +  "type": "boolean"
        +}
      • addedInput schema / properties / outputOptions / properties / robotsStyle
        Added value: +{
        +  "default": false,
        +  "type": "boolean"
        +}
    • Changedget_batch_results1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedlist_ollama_models1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedlocalization3 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedInput schema / properties / content / description
        Previous value: -"Content for auto-detection of language and locale"New value: +"Page content (HTML or plain text) to analyze — required for auto_detect; no fetching is performed"
      • changedInput schema / properties / url / description
        Previous value: -"URL for geo-blocking detection or auto-detection"New value: +"URL — required for handle_geo_blocking; for auto_detect it is optional metadata used only as a TLD country hint (the page is never fetched)"
    • Changedmap_site2 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "_cost": {
        +      "additionalProperties": true,
        +      "description": "Cost-transparency metadata (D3.5), present when injected into the text copy of the result",
        +      "properties": {
        +        "actual": {
        +          "description": "Credits actually charged (0 in creator mode, half-rate on error)",
        +          "type": "number"
        +        },
        +        "projected": {
        +          "description": "Credits projected for this call before execution",
        +          "type": "number"
        +        },
        +        "projection_note": {
        +          "description": "Human-readable note about how the cost was projected",
        +          "type": "string"
        +        },
        +        "remaining_credits": {
        +          "description": "Credits remaining on the account after this call, if known",
        +          "type": [
        +            "number",
        +            "null"
        +          ]
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "base_url": {
        +      "type": "string"
        +    },
        +    "domain_filter_config": {
        +      "anyOf": [
        +        {},
        +        {
        +          "type": "null"
        +        }
        +      ]
        +    },
        +    "filter_stats": {
        +      "anyOf": [
        +        {},
        +        {
        +          "type": "null"
        +        }
        +      ]
        +    },
        +    "metadata": {
        +      "additionalProperties": {},
        +      "description": "Per-URL metadata when include_metadata=true",
        +      "type": "object"
        +    },
        +    "ranked_urls": {
        +      "description": "Present only when the `search` param was set",
        +      "items": {
        +        "additionalProperties": true,
        +        "properties": {
        +          "score": {
        +            "type": "number"
        +          },
        +          "url": {
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "site_map": {
        +      "additionalProperties": true,
        +      "properties": {
        +        "depth_levels": {
        +          "additionalProperties": {},
        +          "type": "object"
        +        },
        +        "root": {
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "sections": {
        +          "additionalProperties": {},
        +          "type": "object"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "statistics": {
        +      "additionalProperties": true,
        +      "properties": {
        +        "average_depth": {
        +          "type": "number"
        +        },
        +        "file_extensions": {
        +          "additionalProperties": {
        +            "type": "number"
        +          },
        +          "type": "object"
        +        },
        +        "max_depth": {
        +          "type": "number"
        +        },
        +        "query_parameters": {
        +          "type": "number"
        +        },
        +        "secure_urls": {
        +          "type": "number"
        +        },
        +        "total_urls": {
        +          "type": "number"
        +        },
        +        "unique_paths": {
        +          "type": "number"
        +        },
        +        "url_lengths": {
        +          "additionalProperties": true,
        +          "properties": {
        +            "average": {
        +              "type": "number"
        +            },
        +            "max": {
        +              "type": "number"
        +            },
        +            "min": {
        +              "type": [
        +                "number",
        +                "null"
        +              ]
        +            }
        +          },
        +          "type": "object"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "total_urls": {
        +      "type": "number"
        +    },
        +    "urls": {
        +      "anyOf": [
        +        {
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        {
        +          "additionalProperties": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "type": "object"
        +        }
        +      ],
        +      "description": "Flat array of URLs, or grouped-by-path object when group_by_path=true (default)"
        +    }
        +  },
        +  "type": "object"
        +}
    • Changedprocess_document2 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedInput schema / properties / options / description
        Previous value: -"Additional processing options (maxPages, pageRange:{start,end}, extractText, extractMetadata, password, outputFormat, ...)"New value: +"Additional processing options (maxPages, pageRange:{start,end}, extractText, extractMetadata, outputFormat, ...)"
    • Changedscrape2 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "_cost": {
        +      "additionalProperties": true,
        +      "description": "Cost-transparency metadata (D3.5), present when injected into the text copy of the result",
        +      "properties": {
        +        "actual": {
        +          "description": "Credits actually charged (0 in creator mode, half-rate on error)",
        +          "type": "number"
        +        },
        +        "projected": {
        +          "description": "Credits projected for this call before execution",
        +          "type": "number"
        +        },
        +        "projection_note": {
        +          "description": "Human-readable note about how the cost was projected",
        +          "type": "string"
        +        },
        +        "remaining_credits": {
        +          "description": "Credits remaining on the account after this call, if known",
        +          "type": [
        +            "number",
        +            "null"
        +          ]
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "content": {
        +      "additionalProperties": true,
        +      "description": "One key per requested format",
        +      "properties": {
        +        "branding": {
        +          "additionalProperties": {},
        +          "description": "Static design tokens: colors, fonts, logo",
        +          "type": "object"
        +        },
        +        "html": {
        +          "type": "string"
        +        },
        +        "json": {
        +          "description": "Result of the {type:\"json\"} format (LLM-structured extraction)"
        +        },
        +        "links": {
        +          "additionalProperties": true,
        +          "properties": {
        +            "external_count": {
        +              "type": "number"
        +            },
        +            "internal_count": {
        +              "type": "number"
        +            },
        +            "links": {
        +              "items": {
        +                "additionalProperties": true,
        +                "properties": {
        +                  "href": {
        +                    "type": "string"
        +                  },
        +                  "is_external": {
        +                    "type": "boolean"
        +                  },
        +                  "original_href": {
        +                    "type": "string"
        +                  },
        +                  "text": {
        +                    "type": "string"
        +                  }
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "total_count": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "markdown": {
        +          "type": "string"
        +        },
        +        "metadata": {
        +          "additionalProperties": true,
        +          "properties": {
        +            "author": {
        +              "type": "string"
        +            },
        +            "canonical_url": {
        +              "type": "string"
        +            },
        +            "description": {
        +              "type": "string"
        +            },
        +            "json_ld": {
        +              "items": {},
        +              "type": "array"
        +            },
        +            "keywords": {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            "microdata": {
        +              "items": {},
        +              "type": "array"
        +            },
        +            "og_tags": {
        +              "additionalProperties": {},
        +              "type": "object"
        +            },
        +            "robots": {
        +              "type": "string"
        +            },
        +            "title": {
        +              "type": "string"
        +            },
        +            "twitter_tags": {
        +              "additionalProperties": {},
        +              "type": "object"
        +            },
        +            "url": {
        +              "type": "string"
        +            },
        +            "viewport": {
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "rawHtml": {
        +          "type": "string"
        +        },
        +        "screenshots": {
        +          "description": "Present for the \"screenshot\" format; each item carries a resourceUri once published",
        +          "items": {
        +            "additionalProperties": true,
        +            "properties": {},
        +            "type": "object"
        +          },
        +          "type": "array"
        +        },
        +        "text": {
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "success": {
        +      "description": "Whether the scrape completed",
        +      "type": "boolean"
        +    },
        +    "url": {
        +      "description": "Final URL after redirects",
        +      "type": "string"
        +    },
        +    "warnings": {
        +      "description": "Per-format warnings; partial success never fails the whole call",
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    }
        +  },
        +  "type": "object"
        +}
    • Changedscrape_structured1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedscrape_template1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedscrape_with_actions3 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • addedInput schema / properties / actions / items / properties / x
        Added value: +{
        +  "description": "scroll: absolute X coordinate to scroll to (window.scrollTo; with y, takes precedence over direction/distance)",
        +  "minimum": 0,
        +  "type": "number"
        +}
      • addedInput schema / properties / actions / items / properties / y
        Added value: +{
        +  "description": "scroll: absolute Y coordinate to scroll to (window.scrollTo; with x, takes precedence over direction/distance)",
        +  "minimum": 0,
        +  "type": "number"
        +}
    • Changedsearch_web2 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "_cost": {
        +      "additionalProperties": true,
        +      "description": "Cost-transparency metadata (D3.5), present when injected into the text copy of the result",
        +      "properties": {
        +        "actual": {
        +          "description": "Credits actually charged (0 in creator mode, half-rate on error)",
        +          "type": "number"
        +        },
        +        "projected": {
        +          "description": "Credits projected for this call before execution",
        +          "type": "number"
        +        },
        +        "projection_note": {
        +          "description": "Human-readable note about how the cost was projected",
        +          "type": "string"
        +        },
        +        "remaining_credits": {
        +          "description": "Credits remaining on the account after this call, if known",
        +          "type": [
        +            "number",
        +            "null"
        +          ]
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "cached": {
        +      "type": "boolean"
        +    },
        +    "effective_query": {
        +      "description": "Present when query expansion changed the query actually used",
        +      "type": "string"
        +    },
        +    "expanded_queries": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "limit": {
        +      "type": "number"
        +    },
        +    "localization": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": true,
        +          "properties": {
        +            "applied": {
        +              "type": "boolean"
        +            },
        +            "countryCode": {
        +              "type": "string"
        +            },
        +            "geoTargeting": {
        +              "type": "boolean"
        +            },
        +            "language": {
        +              "type": "string"
        +            },
        +            "searchDomain": {
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        {
        +          "type": "null"
        +        }
        +      ]
        +    },
        +    "offset": {
        +      "type": "number"
        +    },
        +    "processing": {
        +      "additionalProperties": true,
        +      "properties": {
        +        "deduplication": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": {},
        +              "type": "object"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ]
        +        },
        +        "localization_applied": {
        +          "type": "boolean"
        +        },
        +        "query_expansion": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": {},
        +              "type": "object"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ]
        +        },
        +        "ranking": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": {},
        +              "type": "object"
        +            },
        +            {
        +              "type": "null"
        +            }
        +          ]
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "provider": {
        +      "additionalProperties": true,
        +      "properties": {
        +        "backend": {
        +          "type": "string"
        +        },
        +        "capabilities": {
        +          "additionalProperties": {},
        +          "type": "object"
        +        },
        +        "instanceUrl": {
        +          "type": [
        +            "string",
        +            "null"
        +          ]
        +        },
        +        "name": {
        +          "type": "string"
        +        },
        +        "note": {
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "query": {
        +      "type": "string"
        +    },
        +    "results": {
        +      "items": {
        +        "additionalProperties": true,
        +        "properties": {
        +          "displayLink": {
        +            "type": "string"
        +          },
        +          "formattedUrl": {
        +            "type": "string"
        +          },
        +          "htmlSnippet": {
        +            "type": "string"
        +          },
        +          "link": {
        +            "type": "string"
        +          },
        +          "metadata": {
        +            "additionalProperties": {},
        +            "type": "object"
        +          },
        +          "pagemap": {
        +            "additionalProperties": {},
        +            "type": "object"
        +          },
        +          "snippet": {
        +            "type": "string"
        +          },
        +          "title": {
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "search_time": {
        +      "type": "number"
        +    },
        +    "total_results": {
        +      "type": [
        +        "string",
        +        "number"
        +      ]
        +    }
        +  },
        +  "type": "object"
        +}
    • Changedserp_rank2 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "https://json-schema.org/draft/2020-12/schema",
        +  "additionalProperties": false,
        +  "properties": {
        +    "_cost": {
        +      "additionalProperties": true,
        +      "description": "Cost-transparency metadata (D3.5), present when injected into the text copy of the result",
        +      "properties": {
        +        "actual": {
        +          "description": "Credits actually charged (0 in creator mode, half-rate on error)",
        +          "type": "number"
        +        },
        +        "projected": {
        +          "description": "Credits projected for this call before execution",
        +          "type": "number"
        +        },
        +        "projection_note": {
        +          "description": "Human-readable note about how the cost was projected",
        +          "type": "string"
        +        },
        +        "remaining_credits": {
        +          "description": "Credits remaining on the account after this call, if known",
        +          "type": [
        +            "number",
        +            "null"
        +          ]
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "allPositions": {
        +      "description": "Every position the target holds on this SERP",
        +      "items": {
        +        "additionalProperties": true,
        +        "properties": {
        +          "domain": {
        +            "type": "string"
        +          },
        +          "position": {
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "rankAbsolute": {
        +            "type": [
        +              "number",
        +              "null"
        +            ]
        +          },
        +          "snippet": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "title": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          },
        +          "url": {
        +            "type": [
        +              "string",
        +              "null"
        +            ]
        +          }
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "checkUrl": {
        +      "description": "Link to view the real SERP on DataForSEO",
        +      "type": "string"
        +    },
        +    "checkedAt": {
        +      "type": "string"
        +    },
        +    "configured": {
        +      "description": "False when DATAFORSEO_LOGIN/PASSWORD are unset — no rank was fabricated",
        +      "type": "boolean"
        +    },
        +    "cost": {
        +      "description": "USD charged by DataForSEO for this lookup (separate from CrawlForge credits)",
        +      "type": "number"
        +    },
        +    "depthScanned": {
        +      "type": "number"
        +    },
        +    "device": {
        +      "type": "string"
        +    },
        +    "found": {
        +      "description": "Whether the target appeared anywhere in the scanned SERP",
        +      "type": "boolean"
        +    },
        +    "keyword": {
        +      "type": "string"
        +    },
        +    "location": {},
        +    "note": {
        +      "description": "Present when configured=false, explains how to enable",
        +      "type": "string"
        +    },
        +    "organicResults": {
        +      "type": "number"
        +    },
        +    "position": {
        +      "description": "Best (lowest) organic rank; null = not within top `depth`",
        +      "type": [
        +        "number",
        +        "null"
        +      ]
        +    },
        +    "rankAbsolute": {
        +      "type": [
        +        "number",
        +        "null"
        +      ]
        +    },
        +    "results": {
        +      "description": "Top organic competitors as Google actually ranks them (capped)",
        +      "items": {
        +        "$ref": "#/properties/allPositions/items"
        +      },
        +      "type": "array"
        +    },
        +    "seResultsCount": {
        +      "type": "number"
        +    },
        +    "target": {
        +      "description": "Bare target domain, normalized",
        +      "type": "string"
        +    },
        +    "title": {
        +      "type": [
        +        "string",
        +        "null"
        +      ]
        +    },
        +    "url": {
        +      "description": "URL of the target's best-ranking result",
        +      "type": [
        +        "string",
        +        "null"
        +      ]
        +    }
        +  },
        +  "type": "object"
        +}
    • Changedstealth_mode1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • Changedsummarize_content2 fields changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
      • changedInput schema / properties / options / additionalProperties
        Previous value: -falseNew value: +true
    • Changedtrack_changes1 field changed
      • changedInput schema / $schema
        Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  7. 27 tool updatesv4.10.0
    • First observedagent
    • First observedanalyze_content
    • First observedbatch_scrape
    • First observedcrawl_deep
    • First observeddeep_research
    • First observedextract_content
    • First observedextract_links
    • First observedextract_metadata
    • First observedextract_structured
    • First observedextract_text
    • First observedextract_with_llm
    • First observedfetch_url
    • First observedgenerate_llms_txt
    • First observedget_batch_results
    • First observedlist_ollama_models
    • First observedlocalization
    • First observedmap_site
    • First observedprocess_document
    • First observedscrape
    • First observedscrape_structured
    • First observedscrape_template
    • First observedscrape_with_actions
    • First observedsearch_web
    • First observedserp_rank
    • First observedstealth_mode
    • First observedsummarize_content
    • First observedtrack_changes

TDQS

A3.9/5.0
Disambiguation2/5

The set contains many overlapping extraction tools—scrape, extract_content, extract_text, extract_metadata, extract_links, extract_structured, extract_with_llm, and scrape_structured—several of which can produce the same formats. Although the descriptions include 'not for' guidance, an agent choosing among 10+ fetch/extract variants faces unclear boundaries and high misselection risk.

Naming Consistency4/5

Most tool names follow a clear snake_case verb_noun or verb_modifier pattern like extract_content, search_web, and map_site. A few noun-style names—agent, localization, stealth_mode, serp_rank—deviate, but the overall convention remains readable and predictable.

Tool Count2/5

30 tools is well over the 25+ threshold for a heavy toolset, and many tools duplicate or partially subsume each other's capabilities. The scraping domain would be better served by a more consolidated surface, making the count feel excessive rather than well-scoped.

Completeness5/5

The toolset covers the full scraping and research lifecycle: single, batch, and deep crawling; raw fetch; structured and LLM extraction; search and deep research; Reddit and SERP access; stealth browsing; actions; monitoring; result retrieval; and document processing. No significant dead ends or missing operations are apparent for the stated web-research purpose.

Maintenance

ActivityActive
ResponsivenessWithin a week

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    Provides 42+ MCP tools for browser automation, web scraping, and search, enabling AI agents like Claude and Cursor to browse, extract data, and run research agents on the live web.
    8
    -
  • A
    license
    B
    quality
    A
    maintenance
    Enables AI assistants to crawl websites, extract dynamic content, navigate links, and save structured Markdown files via the MCP protocol, with support for anti-bot bypass, CSS selectors, and custom JavaScript execution.
    1
    41
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    A comprehensive web scraping MCP server with 26 tools for fetching, parsing, extracting, and assisting with web content, returning Markdown-formatted results.
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mysleekdesigns/crawlforge-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server