Skip to main content
Glama

Server Details

Converts any URL to clean, LLM-ready Markdown using real Chrome browsers

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
kc23go/anybrowse
GitHub Stars
4
Server Listing
Anybrowse

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: batch_scrape handles multiple URLs, crawl combines search and scraping, extract returns structured JSON, scrape converts a single URL to markdown, and search returns search results. There is no meaningful overlap that would confuse an agent.

Naming Consistency3/5

Most tools use single-word verbs (scrape, search, crawl, extract), but batch_scrape uses a prefix, creating a mixed convention. While readable, the naming is not uniformly patterned.

Tool Count5/5

With 5 tools, the set is well-scoped for a scraping/search service, covering single-page scraping, batch scraping, structured extraction, web search, and crawl without unnecessary bloat.

Completeness4/5

The tool surface covers the main workflows: search to find URLs, scrape to fetch content, batch_scrape for efficiency, and extract for structured data. A minor gap is the lack of pagination or status tracking, but these are not critical for typical use cases.

Available Tools

5 tools
batch_scrapeAInspect

Scrape multiple URLs at once (up to 10) and get all results as markdown. More efficient than calling scrape() in a loop.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlsYesList of URLs to scrape (max 10)
contextNoOptional: what you're trying to accomplish
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It adds the batch limit ('up to 10'), output format ('markdown'), and efficiency claim, but does not disclose partial failure behavior, rate limits, or authentication needs. These are meaningful gaps but the core behavior is covered.

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, front-loaded with the primary action and includes only essential details. Every word earns its place; no redundancy or 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?

Given the tool's simplicity (2 params, 1 required, no output schema), the description adequately covers purpose, batch limit, and output format. It does not detail result structure or error handling, which would improve completeness, but the core usage context is sufficiently clear.

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?

The input schema already describes both parameters (urls and context) with clear descriptions. The tool description adds 'up to 10' which duplicates the schema, and 'markdown' which is output-related, not parameter-specific. Since schema coverage is 100%, the description adds minimal extra parameter meaning, aligning with the baseline of 3.

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's function: 'Scrape multiple URLs at once (up to 10) and get all results as markdown.' It uses a specific verb and resource, and distinguishes itself from the sibling 'scrape' tool by referencing a batch operation and efficiency over a loop.

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 clear context for use ('Scrape multiple URLs at once') and explicitly mentions the alternative ('More efficient than calling scrape() in a loop'), implying when to choose this over individual scraping. It lacks an explicit when-not-to-use caveat, but the alternative is clearly named.

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

crawlAInspect

Search Google for a query and scrape the top results to Markdown. Returns structured results with title, URL, and full page content.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesThe search query
countNoNumber of results to scrape (1-20, default 3)
contextNoOptional: what you're trying to accomplish (e.g., 'finding competitors pricing', 'researching market trends'). Helps return more targeted results.
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does disclose the main behavior (Google search, scraping top results, converting to Markdown) and the output structure. However, it lacks caveats such as potential scraping failures (e.g., blocked pages), rate limits, or truncation of 'full page content.' The claim 'full page content' may be optimistic and is not qualified.

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, both front-loaded with the main verb and resource. It avoids redundancy and includes essential output information. Every sentence earns its place, making it highly concise and well-structured.

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 that there is no output schema, the description adequately covers return values (title, URL, full page content). It also conveys the core workflow. However, it could be more complete by mentioning the effect of the 'count' parameter on the number of results or any limitations, though the schema handles parameter details. Overall, it is fairly complete for a straightforward tool.

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 three parameters (q, count, context). The description adds no additional semantic meaning beyond what the schema provides; it merely restates the general purpose. Thus, the 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-resource pair: 'Search Google for a query and scrape the top results to Markdown.' It clearly distinguishes from siblings by combining search and scraping into one operation, and explicitly states the return structure (title, URL, full page content). This is a precise and unambiguous statement of purpose.

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

Usage Guidelines3/5

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

The description implies its use case (search + scrape to Markdown) but provides no explicit guidance on when to choose this tool over alternatives like 'search' (which might only return links) or 'scrape' (which might target a specific URL). No exclusions or alternatives are mentioned, making it only 'implied usage' rather than explicit guidance.

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

extractAInspect

Extract structured data from any URL as JSON. Provide a schema describing what fields you want. Schema format: {"fieldName": "type"} where type is one of: string, number, boolean, array, object. Example: {"title": "string", "price": "number", "inStock": "boolean"}. Great for prices, availability, product details, contact info.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to extract data from
schemaYesField names mapped to type strings. Format: {"fieldName": "string|number|boolean|array|object"}. Example: {"title": "string", "price": "number", "inStock": "boolean", "tags": "array"}
contextNoOptional: what you're trying to accomplish (helps LLM extraction accuracy)
Behavior3/5

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

With no annotations, the description carries the burden of disclosure. It covers the core behavior (schema-driven extraction to JSON) but does not mention potential error cases, response shape beyond 'JSON', or any limitations (e.g., URL restrictions). This is adequate but not rich.

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 purpose, and every sentence earns its place: purpose, schema format, and use cases. No wasted words or redundancy.

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 no output schema, the description should clarify the output shape. It says 'as JSON' but does not explicitly state that the response is a JSON object with the requested fields. However, this is easily inferred from the schema input, and the description is otherwise complete for a simple extraction tool.

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 adds a simple example and clarifies the 'Provide a schema' requirement, but it does not significantly expand on the schema's own descriptions or explain the 'context' parameter beyond what's already 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 a specific verb and resource: 'Extract structured data from any URL as JSON'. It differentiates from siblings by emphasizing schema-driven field extraction, which is distinct from batch_scrape, crawl, scrape, and search.

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?

It provides clear context with 'Great for prices, availability, product details, contact info' and implies when to use it (when you know the fields you want). However, it does not explicitly mention when not to use it or name alternative tools, so it falls short of a full 5.

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

scrapeAInspect

Convert any URL to clean, LLM-ready Markdown. 84% success rate including JavaScript-heavy sites, Cloudflare-protected pages, and government sites. Renders JavaScript, handles dynamic content, bypasses common bot detection with stealth mode and CAPTCHA solving. Returns structured markdown with title and metadata. Tip: provide 'context' to get more relevant results. Free tier: 10 scrapes per day. Get 50 per day at anybrowse.dev/upgrade-free

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to scrape (must start with http:// or https://)
contextNoOptional: what you're trying to accomplish (e.g., 'comparing job salaries', 'researching competitors', 'extracting product prices'). Helps anybrowse return more relevant content.
Behavior5/5

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

With no annotations, the description carries full behavioral disclosure. It explicitly mentions JavaScript rendering, dynamic content handling, stealth mode/CAPTCHA bypass, an 84% success rate, and the return format (Markdown with title/metadata). This is transparent about both capabilities and limitations.

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 main purpose, followed by capabilities, return format, a tip, and pricing. Each sentence contributes distinct information, though the pricing/upgrade details are less critical for an AI agent invoking the tool.

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?

The description covers the tool's purpose, capabilities, return format, and a usage tip. It lacks explicit differentiation from sibling tools and a detailed breakdown of the Markdown output structure, but for a 2-parameter tool without an output schema, it is largely sufficient.

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 baseline is 3. The description adds value by advising to provide 'context' for more relevant results, enriching the context parameter beyond its schema description. The URL parameter is clear from the schema already.

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 'Convert any URL to clean, LLM-ready Markdown,' which is a specific verb+resource statement. It clearly distinguishes this tool from siblings like batch_scrape (multiple URLs) and extract (structured data) by focusing on single-page conversion to Markdown.

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

Usage Guidelines3/5

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

Provides a tip to supply 'context' for better results, which is a usage guideline. However, it does not explicitly state when to use scrap over batch_scrape, crawl, extract, or search, leaving the choice implied rather than prescribed.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    Converts any webpage into clean, LLM-ready Markdown, removing noise and supporting JavaScript rendering.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Converts URLs into clean, LLM-ready markdown, respecting robots.txt and never bypassing anti-bot measures or paywalls.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.