MCP Hub
Back to servers

mcp-web-scrape

πŸš€ mcp-web-scrape β€” Clean, cache-aware web content fetcher for AI agents. Fetch any URL β†’ extract readable content β†’ return Markdown/JSON with citations. ⚑ Fast caching, 🀝 robots.txt compliant, πŸ“ Markdown-ready output, οΏ½οΏ½ works with ChatGPT/Claude Desktop.

Stars
3
Tools
48
Updated
Jan 7, 2026
Validated
Jan 9, 2026

πŸ•·οΈ MCP Web Scrape

Clean, cached web content for agentsβ€”Markdown + citations, robots-aware, ETag/304 caching.

npm version License: MIT GitHub stars

πŸ“¦ Version

Current Version: 1.0.7

🎬 Live Demos

See MCP Web Scrape in action! These demos show real-time extraction and processing:

πŸ“„ Content Extraction

Extract Content Demo

Transform messy HTML into clean, agent-ready Markdown with automatic citations

πŸ”— Link Extraction

Extract Links Demo

Extract and categorize all links from any webpage with filtering options

πŸ“Š Metadata Extraction

Metadata Demo

Get comprehensive page metadata including title, description, author, and keywords

πŸ“ Content Summarization

Summarize Content Demo

AI-powered content summarization for quick insights and key points

πŸš€ Quick Start Demo

# Extract content from any webpage
npx mcp-web-scrape@1.0.7

# Example: Extract from a news article
> extract_content https://news.ycombinator.com
βœ… Extracted 1,247 words with 5 citations
πŸ“„ Clean Markdown ready for your AI agent

🎯 Tool Examples

# Extract all forms from a webpage
> extract_forms https://example.com/contact
βœ… Found 3 forms with 12 input fields

# Parse tables into structured data
> extract_tables https://example.com/data --format json
βœ… Extracted 5 tables with 247 rows

# Find social media profiles
> extract_social_media https://company.com
βœ… Found Twitter, LinkedIn, Facebook profiles

# Analyze sentiment of content
> sentiment_analysis https://blog.example.com/article
βœ… Sentiment: Positive (0.85), Emotional tone: Optimistic

# Extract named entities
> extract_entities https://news.example.com/article
βœ… Found 12 people, 8 organizations, 5 locations

# Check for security vulnerabilities
> scan_vulnerabilities https://mysite.com
βœ… No XSS vulnerabilities found, 2 header improvements suggested

# Analyze competitor SEO
> analyze_competitors ["https://competitor1.com", "https://competitor2.com"]
βœ… Competitor analysis complete: keyword gaps identified

# Monitor uptime and performance
> monitor_uptime https://mysite.com --interval 300
βœ… Uptime: 99.9%, Average response: 245ms

# Generate comprehensive report
> generate_reports https://website.com --metrics ["seo", "performance", "security"]
βœ… Generated 15-page analysis report

⚑ Quick Start

# Install globally
npm install -g mcp-web-scrape@1.0.7

# Try it instantly (latest version)
npx mcp-web-scrape@latest

# Try specific version
npx mcp-web-scrape@1.0.7

# Or start HTTP server
node dist/http.js

ChatGPT Desktop Setup

Add to your ~/Library/Application Support/ChatGPT/config.json:

{
  "mcpServers": {
    "web-scrape": {
      "command": "npx",
      "args": ["mcp-web-scrape@1.0.7"]
    }
  }
}

Claude Desktop Setup

Add to your ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "web-scrape": {
      "command": "npx",
      "args": ["mcp-web-scrape@1.0.7"]
    }
  }
}

πŸ› οΈ Available Tools

Core Extraction Tools

ToolDescription
extract_contentConvert HTML to clean Markdown with citations
summarize_contentAI-powered content summarization
get_page_metadataExtract title, description, author, keywords
extract_linksGet all links with filtering options
extract_imagesExtract images with alt text and dimensions
search_contentSearch within page content
check_url_statusVerify URL accessibility
validate_robotsCheck robots.txt compliance
extract_structured_dataParse JSON-LD, microdata, RDFa
compare_contentCompare two pages for changes
batch_extractProcess multiple URLs efficiently
get_cache_statsView cache performance metrics
clear_cacheManage cached content

Advanced Extraction Tools

ToolDescription
extract_formsExtract form elements, fields, and validation rules
extract_tablesParse HTML tables with headers and structured data
extract_social_mediaFind social media links and profiles
extract_contact_infoDiscover emails, phone numbers, and addresses
extract_headingsAnalyze heading structure (H1-H6) for content hierarchy
extract_feedsDiscover and parse RSS/Atom feeds

Content Transformation Tools

ToolDescription
convert_to_pdfConvert web pages to PDF format with customizable settings
extract_text_onlyExtract plain text content without formatting or HTML
generate_word_cloudGenerate word frequency analysis and word cloud data
translate_contentTranslate web page content to different languages
extract_keywordsExtract important keywords and phrases from content

Advanced Analysis Tools

ToolDescription
analyze_readabilityAnalyze text readability using various metrics (Flesch, Gunning-Fog, etc.)
detect_languageDetect the primary language of web page content
extract_entitiesExtract named entities (people, places, organizations)
sentiment_analysisAnalyze sentiment and emotional tone of content
classify_contentClassify content into categories and topics

SEO & Marketing Tools

ToolDescription
analyze_competitorsAnalyze competitor websites for SEO and content insights
extract_schema_markupExtract and validate schema.org structured data
check_broken_linksCheck for broken links and redirects on pages
analyze_page_speedAnalyze page loading speed and performance metrics
generate_meta_tagsGenerate optimized meta tags for SEO

Security & Privacy Tools

ToolDescription
scan_vulnerabilitiesScan pages for common security vulnerabilities
check_ssl_certificateCheck SSL certificate validity and security details
analyze_cookiesAnalyze cookies and tracking mechanisms
detect_trackingDetect tracking scripts and privacy concerns
check_privacy_policyAnalyze privacy policy compliance and coverage

Advanced Monitoring Tools

ToolDescription
monitor_uptimeMonitor website uptime and availability
track_changes_detailedAdvanced change tracking with similarity analysis
analyze_traffic_patternsAnalyze website traffic patterns and trends
benchmark_performanceBenchmark performance against competitors
generate_reportsGenerate comprehensive analysis reports

Analysis & Monitoring Tools

ToolDescription
monitor_changesTrack content changes over time with similarity analysis
analyze_performanceMeasure page performance, SEO, and accessibility metrics
generate_sitemapCrawl websites to generate comprehensive sitemaps
validate_htmlValidate HTML structure, accessibility, and SEO compliance

πŸ€” Why Not Just Use Built-in Browsing?

Deterministic Results β†’ Same URL always returns identical content
Smart Citations β†’ Every fact links back to its source
Robots Compliant β†’ Respects robots.txt and rate limits
Lightning Fast β†’ ETag/304 caching + persistent storage
Agent-Optimized β†’ Clean Markdown instead of messy HTML

πŸ”’ Safety First

  • βœ… Respects robots.txt by default
  • βœ… Rate limiting prevents server overload
  • βœ… No paywall bypass - ethical scraping only
  • βœ… User-Agent identification for transparency

πŸ“¦ Installation

# Install specific version
npm install -g mcp-web-scrape@1.0.7

# Or use directly (latest)
npx mcp-web-scrape@latest

# Or use specific version
npx mcp-web-scrape@1.0.7

πŸ”§ Configuration

# Environment variables
export MCP_WEB_SCRAPE_CACHE_DIR="./cache"
export MCP_WEB_SCRAPE_USER_AGENT="MyBot/1.0"
export MCP_WEB_SCRAPE_RATE_LIMIT="1000"

🌐 Transports

STDIO (default)

mcp-web-scrape

HTTP/SSE

node dist/http.js --port 3000

πŸ“š Resources

Access cached content as MCP resources:

cache://news.ycombinator.com/path β†’ Cached page content
cache://stats β†’ Cache statistics
cache://robots/news.ycombinator.com β†’ Robots.txt status

🀝 Contributing

We love contributions! See CONTRIBUTING.md for guidelines.

Good First Issues:

  • Add new content extractors
  • Improve error handling
  • Write more tests
  • Enhance documentation

πŸ“„ License

MIT Β© Mahipal

🌟 Star History

Star History Chart


Built with ❀️ for the Model Context Protocol ecosystem

Reviews

No reviews yet

Sign in to write a review