stagenth · 网页数据
Server Details
Web scraping to clean Markdown with JS rendering, multi-page crawl, structured extract, sitemaps.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4.3/5 across 4 of 4 tools scored.
Each tool has a clearly distinct role: site_map discovers URLs, scrape_url fetches a single page, crawl fetches multiple pages, and extract returns structured JSON. The overlap between scrape_url and crawl is clearly addressed in descriptions by single vs multi-page, so an agent can easily select the right tool.
The names are mostly intuitive, with two verbs (crawl, extract) and two noun phrases (scrape_url, site_map). The mix of verb and noun forms is a slight inconsistency, but all names are lowercase with underscores, so the pattern is still predictable.
With only 4 tools, each serves a distinct step in the web data workflow: discovery, single-page fetch, multi-page crawl, and structured extraction. This is an appropriate scope for the server's purpose, neither too sparse nor overwhelming.
The tool set covers the full pipeline from discovering URLs (site_map) to fetching content (scrape_url, crawl) to extracting structured data (extract). There are no obvious gaps for the server's stated purpose of web data collection and transformation.
Available Tools
4 toolscrawlAInspect
从入口 URL 广度优先抓取多页,每页转干净 Markdown(按实际抓取页数计费,每页 1 credit)。
纯抓取 + 格式转换,不生成任何 AI 内容;逐页 SSRF 校验,单页失败不中断。
| Name | Required | Description | Default |
|---|---|---|---|
| max_depth | No | 链接跟踪深度(0-3,0=只抓入口页) | |
| max_pages | No | 最多抓取页数(1-20) | |
| start_url | Yes | 入口页 URL(http/https,仅限公开网页) | |
| same_domain | No | 只跟踪同域名链接 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and discloses key behaviors: per-page billing (1 credit/page), pure crawling with no AI content, per-page SSRF checks, and non-interrupting failure handling. However, it omits details like rate limits, robots.txt handling, or exact output structure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded: two short paragraphs cover purpose, billing, security, and failure behavior without redundancy. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description provides a solid overview of behavior, billing, and resilience, but lacks a stated output format (e.g., list of {url, markdown} objects), which is important given there is no output schema to explain return values.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers 100% of parameters with descriptions. The tool description does not add parameter-specific semantics beyond what is already in the schema, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('从入口 URL 广度优先抓取多页,每页转干净 Markdown') with a clear resource (entry URL and multiple pages). It distinguishes from sibling tools like scrape_url (single-page) and site_map (site structure) by emphasizing multi-page crawling with Markdown conversion.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies use for multi-page crawling tasks, but it does not explicitly mention alternatives or when not to use this tool. The context is clear overall, but exclusions are absent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
extractAInspect
结构化抽取网页要素(表格/链接/图片/标题大纲/元数据/自定义 CSS 选择器),返回 JSON。
与 scrape_url 的区别:不返回整页正文,只返回指定结构——表格转成 headers+rows
的 JSON 可直接计算;配自定义选择器可精准取价格/标题等字段。
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | 要抽取的网页 URL(http/https,仅限公开网页) | |
| targets | No | 抽取目标子集:metadata / headings / links / images / tables,默认 metadata+headings+links+tables | |
| selectors | No | 可选 CSS 选择器映射 {名称: 选择器},每个选择器返回匹配元素的文本列表 |
Tool Definition Quality
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 explains that the tool transforms tables into headers+rows JSON and that custom selectors return text lists of matching elements, providing meaningful insight into the return behavior. It does not mention potential pitfalls like dynamic content or error handling, but the core behavior is transparent and not misleading.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured. It uses two sentences: the first lists the supported structured elements and return format, the second directly contrasts with scrape_url and provides a practical use case. Every word earns its place with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (3 parameters, no output schema), the description is quite complete. It covers the main purpose, key distinctions, and expected behavior. It doesn't spell out the exact JSON structure for every target type, but the names of the targets are self-explanatory (metadata, headings, links, images, tables) and the examples provided give sufficient context for an AI agent to infer the output shape.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so parameters are already documented. The description adds value beyond this by giving concrete examples (extracting prices/titles) and clarifying the transformation behavior for tables, which enriches understanding of how the 'targets' and 'selectors' parameters operate. This goes beyond a simple baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: structured extraction of web page elements (tables, links, images, headings, metadata, custom CSS selectors) returning JSON. It explicitly differentiates from the sibling tool scrape_url by noting it returns only specified structures, not the full page content, which distinguishes it effectively.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool: when you need structured data like tables convertible to headers+rows rather than the full page, and when you need precise field extraction via custom selectors. It names scrape_url as an alternative and explains the difference. However, it does not mention cases when the tool is not appropriate or when other siblings (crawl, site_map) should be used, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
scrape_urlAInspect
抓取一个公开网页,返回干净的 Markdown(供 AI 阅读/总结/提取)。
只抓公开网页,禁止内网/保留地址;不生成任何内容,只做抓取与格式转换。 静态抓取拿不到内容的 JS 动态页可加 render=true 走真浏览器渲染。
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | 要抓取的网页 URL(http/https,仅限公开网页) | |
| render | No | 经境内托管浏览器真渲染 JS 后再抽取(适合动态页),默认关闭 | |
| formats | No | 输出格式子集:markdown / html / text,默认 markdown | |
| only_main_content | No | 只提取正文主体,去掉导航/广告/页脚 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden and discloses key behaviors: it only fetches and converts, does not generate content, and uses real browser rendering when render=true. It stops short of describing error handling or details for all parameters, but the essential traits are covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is only two sentences, front-loaded with the core purpose, and includes a practical usage tip without any redundant or filler wording. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 4 parameters and no output schema, the description covers the primary use case, constraints, and advanced rendering option. It does not mention the formats or only_main_content parameters, but the schema fills those gaps. A brief pointer to sibling tools would improve completeness, but it is already sufficiently informative.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema fully documents each parameter. The description adds minimal extra semantics beyond repeating the render=true suggestion already present in the schema. It meets the baseline for well-documented schemas but does not go further.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: '抓取一个公开网页,返回干净的 Markdown' (fetch a public webpage, return clean Markdown). It also clarifies the tool only fetches and converts, not generates, which differentiates it from siblings like 'extract' or 'crawl'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear context: only public webpages, prohibited intranet/reserved addresses, and advises using render=true for JS-heavy dynamic pages. However, it does not explicitly compare with sibling tools or state when not to use this tool in favor of alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
site_mapAInspect
发现站点 URL 清单:优先 robots.txt / sitemap.xml,无站点地图时退化为入口页链接发现。
配合 scrape_url / crawl 使用:先 site_map 挑准页面,再精准抓取,省 credit。
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | 站点入口 URL(用于确定站点与域名) | |
| max_urls | No | 最多返回 URL 数(1-1000) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It discloses key behaviors: prioritizing robots.txt/sitemap.xml and falling back to entry-page link discovery when no sitemap exists. It also hints at cost efficiency ('省 credit'). While it doesn't cover rate limits or error handling, the disclosed behavior is meaningful and non-generic.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences deliver the core purpose, method, fallback behavior, and integration guidance. Every sentence earns its place, with no filler or repetition of schema content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity, the description adequately covers how it discovers URLs and how to use it in conjunction with sibling tools. It lacks an explicit statement about return format, but that's not required given the absence of an output schema and the simplicity of the tool. Overall, it provides sufficient context for an agent to select and invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%: both 'url' and 'max_urls' are already described in the schema. The description adds no extra parameter-level detail beyond what the schema provides, so it receives the baseline score for high coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb+resource: '发现站点 URL 清单' (discover site URL list) and clearly states the method (robots.txt/sitemap.xml first, fallback to entry page links). It distinguishes itself from siblings like crawl and scrape_url by focusing on URL list discovery rather than full crawling or content extraction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly advises using site_map before scrape_url or crawl to select target pages and save credits, providing clear when-to-use context. It doesn't mention when not to use it or alternatives beyond the stated sibling tools, but the cooperative workflow is well articulated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityCmaintenanceScrapes webpages and converts them to markdown using AI-powered interaction to automatically handle cookie banners, CAPTCHAs, paywalls, and other blocking elements before extracting clean content.1548Apache 2.0
- Alicense-qualityDmaintenanceConverts any webpage into clean, LLM-ready Markdown, removing noise and supporting JavaScript rendering.MIT
- Alicense-qualityBmaintenanceFetches and renders web pages using a headless Chromium browser, returning clean Markdown or HTML content even for JavaScript-heavy single-page applications.414MIT
- Flicense-qualityDmaintenanceScrapes webpages and converts them to clean Markdown using browser automation, ideal for creating READMEs, documentation, or processing dynamic web content.