Web Content Extract Mcp
Server Details
Web Content Extract Mcp connects AI agents to real public APIs via MCP. Tools include
- Status
- Healthy
- Uptime
- 99.7% over 37 days
- Last Tested
- Transport
- Streamable HTTP ยท MCP 2025-11-25
- URL
- Repository
- varvararatta/botfactory-mcp
- GitHub Stars
- 0
TDQS
Scored across 5 tools
Each tool targets a distinct aspect: article extraction, general text, links, metadata, and health check. No overlap in functionality.
All tool names follow a consistent verb_noun pattern in snake_case (extract_article, fetch_url_content, get_page_links, get_page_metadata). health_check is a common exception but fits the naming style.
Five tools is an appropriate scope for a web content extraction server, covering all essential operations without being excessive.
The toolset covers the main read operations for web content (article, text, links, metadata). Missing features like screenshot or HTML download are minor for the stated purpose.
Available Tools
5 toolsextract_articleAInspect
Extract main article content from a news/blog URL. Returns: {title, description, body, author, date}
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It does not explicitly state that the tool is read-only, safe, or what side effects exist. While 'Extract' implies a fetch operation, crucial behavioral details like network usage, auth requirements, or rate limits are missing.
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 sentences with zero waste. The first sentence states the action and target, and the second lists the return fields. Excellent front-loading of purpose.
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 simple tool with one parameter and no output schema, the description covers the essential: what it does and what it returns. It does not detail error behavior or non-news URLs, but the brevity is acceptable given the tool's simplicity. The listed return fields substitute for an output schema.
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 0% (the single 'url' parameter lacks a description). The tool description adds no extra meaning about the parameter's format, constraints, or expected input beyond its name. The description should clarify, e.g., that it expects a valid absolute URL.
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 'Extract' and resource 'main article content' from a news/blog URL. It clearly distinguishes from sibling tools like fetch_url_content (raw content) and get_page_metadata (metadata) by targeting structured article 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 implies usage for extracting clean article content from news/blog URLs, but does not explicitly state when not to use it (e.g., for raw HTML or metadata) nor provide alternatives. The differentiation from siblings is implicit rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fetch_url_contentCInspect
Fetch and extract clean text content from a public URL. Returns: {title, text, url, word_count}
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| max_chars | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits. It mentions the return format but does not discuss errors, rate limits, authentication, or whether the content is cached. Minimal detail beyond the basic operation.
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 short (two sentences) and front-loaded with purpose. However, it omits necessary parameter details, so conciseness comes at the cost of completeness.
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 2 parameters and no output schema, the description should at least cover parameter behavior. It fails to describe max_chars, leaving a significant gap. Incomplete despite simplicity.
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 0%, so the description must explain parameters. It mentions the URL implicitly but does not describe max_chars at all. No added meaning beyond the schema's field names and types.
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 verb 'fetch and extract' and the resource 'clean text content from a public URL'. It distinguishes the tool's output type (clean text) but does not explicitly differentiate from the sibling tool 'extract_article'.
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?
No guidance on when to use this tool versus its siblings (e.g., extract_article, get_page_links). No context about prerequisites or appropriate scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_page_linksCInspect
Extract all links from a page. Returns: {links: [href], internal_count, external_count}
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| same_domain_only | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It mentions returns but does not disclose handling of relative URLs, error behavior, or how the same_domain_only parameter affects results. Minimal behavioral insight.
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?
Very concise, two sentences front-loading the purpose. No wasted words, though it could be slightly expanded for clarity without harming conciseness.
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 no annotations or output schema and two parameters, the description is incomplete. It omits parameter behavior, edge cases, and error scenarios, requiring the agent to experiment or rely on external documentation.
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 0%, and the description adds no parameter information. It does not explain the url or same_domain_only parameters, leaving the agent to guess their purpose and values.
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 extracts all links from a page and specifies the return format. It distinguishes from siblings since other tools like extract_article, fetch_url_content, get_page_metadata focus on different aspects. However, it doesn't clarify what 'links' includes (e.g., only anchor tags).
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?
No guidance on when to use this tool versus alternatives. The description lacks explicit context or exclusions. The agent must infer usage from the name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_page_metadataBInspect
Get metadata from a page: title, description, og tags, keywords. Returns: {title, description, keywords, og_title, og_image, og_type}
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; description lacks behavioral details such as error handling, rate limits, or permissions. Only lists return fields.
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?
Short and front-loaded with purpose, but lacks structured formatting (e.g., bullet points).
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 simple one-parameter tool, covers basic return info but misses parameter details and behavioral context.
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 0% with no description for the 'url' parameter; description does not add context (e.g., expected format, allowed schemes).
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?
Description explicitly states the tool gets metadata (title, description, og tags, keywords) and lists return fields, distinguishing it from siblings like extract_article or fetch_url_content.
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?
Usage is implied (when metadata is needed) but no explicit guidance on when not to use or comparisons to alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
health_checkCInspect
Server health check.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations available, the description must disclose behavioral traits but does not. It fails to explain what a 'health check' means, whether it performs a read-only status query, makes external calls, requires authentication, or what side effects might occur. This leaves the agent completely in the dark regarding tool behavior.
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 extremely concise at four words, but it is under-specified rather than efficiently structured. It conveys the essential topic but lacks the contextual depth expected of a tool description, making it minimally acceptable.
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 simplicity of the tool (no parameters, no output schema), the description should at least clarify what the health check reports (e.g., status code, latency, uptime). It does not, so the description is incomplete for an agent to predict the tool's response or behavior.
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 tool has zero parameters, so the description is not required to add parameter-level semantics. The schema already indicates no parameters, and the description provides no additional details, but since there are no parameters, there is nothing to explain.
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 'Server health check' is a noun phrase that communicates the general purpose but lacks a specific verb or detail on what exactly the check entails. It distinguishes from sibling text-analysis tools but essentially restates the tool name with minimal added meaning.
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?
No guidance is provided on when to use this tool versus alternatives. There is no mention of context, prerequisites, or exclusion criteria, leaving the agent to infer usage solely from the tool name.
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.
5 tool updates
- First observed
extract_article - First observed
fetch_url_content - First observed
get_page_links - First observed
get_page_metadata - First observed
health_check
Related MCP Connectors
Htmlpdf Transform Mcp connects AI agents to real public APIs via MCP. Tools include
Web scraping for AI agents. Extract text and metadata from any URL worldwide. $0.005/page.
Web MCP: scrape/crawl sites, web search, brand assets, app stores, YouTube, Reddit, Hacker News.
Zyte API MCP โ unified web fetch + AI extraction (zyte.com)
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceThe web data platform for AI agents. Fetch, search, crawl, extract, monitor, and screenshot any URL. 55+ domain extractors, 65-98% token savings. 7 MCP tools included.332 npm12AGPL 3.0
- AlicenseAqualityBmaintenanceMCP server that extracts structured JSON from public URLs for AI agents using schemas like product, article, and company.627 npmMIT
- AlicenseAqualityDmaintenanceMCP-native web scraping and search API for AI agents. Converts any URL to clean Markdown with 90% success rate, including Cloudflare-protected sites and JS SPAs. Real-time web search via Brave Search API. CAPTCHA solving built-in. 10 free scrapes/day.505MIT
- FlicenseNot gradedqualityBmaintenanceEnables MCP-compatible AI clients to extract live web content and convert it into structured Markdown for LLM ingestion, RAG pipelines, and agentic workflows.-
Glama MCP Gateway
Add one secure layer between your agents and this server.