Skip to main content
Glama

Server Details

Scrape, crawl and search the web for AI agents via MCP.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Tool DescriptionsA

Average 4/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: start_crawl and start_search initiate different async operations, get_job polls their status, scrape_url returns content synchronously, and get_usage handles account details. No two tools overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: get_job, get_usage, scrape_url, start_crawl, start_search. The verbs (get, scrape, start) clearly indicate the action, and the nouns identify the target resource.

Tool Count5/5

Five tools cover the core workflows of this scraping/search service: two async starters, one poller, one synchronous scraper, and one usage checker. This is well-scoped without unnecessary redundancy.

Completeness4/5

The core lifecycle is covered: start async jobs, poll for results, retrieve synchronous content, and check account balance. Minor gaps exist, such as no explicit cancel/revoke job tool or a way to list historical jobs, but these are not critical for basic usage.

Available Tools

5 tools
get_jobA
Read-onlyIdempotent
Inspect

Get the status and result of a crawl or search job. Terminal states: SUCCESS, FAILURE and REVOKED; PENDING/STARTED must be polled again.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior5/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, and the description adds important behavioral details beyond those: terminal states (SUCCESS, FAILURE, REVOKED) versus non-terminal states (PENDING/STARTED), and the need to poll again. This is valuable, non-redundant context.

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 concise sentences. It front-loads the core purpose, then adds the most critical behavioral note (polling and terminal states) without any filler or redundancy.

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 a simple single-parameter schema and an output schema present, the description covers the needed operational semantics: what the tool does, what states exist, and that polling is required. The annotations cover safety, so no further behavioral disclosure is needed.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not explain the job_id parameter, such as where to obtain it or its expected format. Although the parameter name is self-explanatory and only one exists, the description fails to compensate for the absence of schema descriptions, so the agent must infer the 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 uses a specific verb ('Get') and clearly identifies the resource ('status and result of a crawl or search job'). It distinguishes from siblings like start_crawl and start_search by focusing on retrieving an existing job, and even names the poll-able states.

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 gives clear usage context: it is for retrieving job status and indicates that PENDING/STARTED states must be polled again, implying repeated calls. It does not explicitly state when not to use this tool or name alternatives, but the sibling list and phrasing make the intended use obvious.

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

get_usageA
Read-onlyIdempotent
Inspect

Get the plan, credits used and remaining balance of the MESSORA account.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior3/5

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

The annotations already declare readOnlyHint=true and destructiveHint=false, covering safety. The description adds specificity about the returned data (plan, credits, balance) but discloses no additional behavioral traits such as authentication, rate limits, or side effects. Given the strong annotations, the description provides marginal extra value.

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 a single, clear sentence that front-loads the action and concisely conveys the purpose. There is no redundant information or filler, making it highly efficient.

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 simple read-only tool with no parameters and an output schema present, the description is complete. It specifies exactly what information is returned (plan, credits used, remaining balance) and does not need to explain output structure since that is covered by the output schema.

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 tool has 0 parameters, so the schema trivially covers 100% with nothing to document. Per the baseline rule for 0 params, a score of 4 is appropriate; the description does not need to add parameter semantics since there are none.

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 action ('Get') and resource ('the plan, credits used and remaining balance of the MESSORA account'). It distinguishes itself from sibling tools such as get_job, scrape_url, start_crawl, and start_search, which all have different purposes.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives, no exclusions, and no context on when it is appropriate. It simply states what it does without indicating when an agent should choose it over other options.

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

scrape_urlAInspect

Extract content starting from a URL. Synchronous: returns the content directly, no job_id. Follows up to max_pages pages from that URL (default 1). Consumes credit only when the backend returns scrape_status=success.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
tagsNo
formatsNo
timeoutNo
wait_forNo
max_depthNo
max_pagesNo
parse_pdfNo
render_jsNo
fact_checkNo
max_age_msNo
json_promptNo
json_schemaNo
include_framesNo
follow_subdomainsNo
only_main_contentNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior4/5

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

The description discloses credit consumption only on success, which is non-obvious and useful. It also clarifies synchronous return behavior. Annotations indicate readOnly=false and idempotent=false, and the description adds specific context about side effects, enhancing transparency.

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 long, front-loaded with the core purpose, and every sentence provides meaningful information without redundancy. It achieves high clarity in a compact form.

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?

Given the tool's 16 parameters and output schema, the description provides a high-level overview but omits important behaviors such as output formats, error handling, and most parameter options. The output schema fills some gaps, but the description alone is incomplete for a complex tool.

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

Parameters2/5

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

With 16 parameters and 0% schema coverage, the description only explains max_pages, leaving many critical parameters (e.g., formats, render_js, tags, fact_check) without semantics. This is a significant gap for effective tool invocation.

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 extracts content from a URL and is synchronous, returning content directly with no job_id. This distinguishes it from sibling tools like start_crawl, which likely operate asynchronously, and from get_job/get_usage which are not 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?

The description provides clear context by highlighting synchronous behavior and direct content return, implying usage for immediate extraction needs. It does not explicitly name alternatives but the contrast with start_crawl's job_id is implied, giving reasonable guidance.

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

start_crawlAInspect

Start an asynchronous crawl and return a job_id. Poll get_job until PENDING/STARTED becomes SUCCESS, FAILURE or REVOKED.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYes
tagsNo
pdf_ocrNo
max_depthNo
max_pagesYes
parse_pdfNo
url_regexNo
timeout_msNo
wait_for_msNo
include_linksNo
include_framesNo
include_imagesNo
shorten_base64No
follow_subdomainsNo
only_main_contentNo
settle_animationsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

Behavior4/5

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

Annotations already indicate the operation is not read-only and not idempotent. The description adds valuable context about the asynchronous nature and the job lifecycle states (PENDING/STARTED transitioning to terminal states), which is beyond the annotations. It does not discuss side effects or rate limits, but the added state-machine detail is useful.

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 a single, information-dense sentence that wastes no words. It conveys the core action, the asynchronous contract, and the next step (poll get_job) efficiently, earning top marks for conciseness.

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

Completeness2/5

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

Despite the concise phrasing, the description omits any elaboration on crawl configuration or parameter behaviors, which is significant for a tool with 16 parameters and no schema descriptions. The presence of get_job as a sibling and an output schema helps, but the description alone does not provide enough context to safely configure non-default options like pdf_ocr or max_depth.

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

Parameters1/5

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

Schema description coverage is 0%, yet the description provides zero explanation of the 16 parameters. It does not even mention that 'url' is the target to crawl or what 'max_pages' controls, leaving agents to guess from names and types alone. With no compensation in the description, this is a critical gap.

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 begins with 'Start an asynchronous crawl', a specific verb+resource that clearly identifies the action and distinguishes it from siblings like start_search, scrape_url, or get_job. It also states the return value (job_id), leaving no ambiguity about what the tool 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 explicitly instructs the agent to poll get_job until the job reaches a terminal state (SUCCESS, FAILURE, or REVOKED), which is direct workflow guidance. It does not, however, offer explicit exclusions or when to use alternatives like scrape_url for single-page fetches, so it does not meet the full 5-level bar.

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

Frequently Asked Questions

Discussions

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

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to perform unified web research through a single MCP server, including search, page fetching, recursive crawling, document parsing, YouTube transcript extraction, and deep multi-query research.
    2
  • A
    license
    B
    quality
    C
    maintenance
    Enables AI agents to perform web searches and extract full-text content from web pages via standard MCP tools, with fallback search and semantic reranking.
    2
    2
    MIT
  • A
    license
    Not graded
    quality
    F
    maintenance
    MCP tool server that gives any AI agent the ability to search, scrape, and analyze content across the internet.
    43
    MIT

View all MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources