Gives Claude five web operations without requiring API keys: extract structured content (titles, headings, links, images, metadata) from URLs, search via DuckDuckGo, monitor site uptime and response times, convert HTML to markdown, and batch extract from multiple URLs in parallel. Reaches for this when you need web scraping or search capabilities in your agent workflows but don't want to manage authentication or run a headless browser. Built on direct HTTP requests with 15 second timeouts and strips out scripts and ads for clean extraction. Works through npx so there's no global installation step.
Public tool metadata for what this MCP can expose to an agent.
check_usageCheck your current credit balance and API usage history. Free, does not cost a credit. Use this if you need to check how many credits remain or review usage patterns. Returns JSON: {"key": "ftch_abc1...", "credits_remaining": 450, "usage": {"2025-01-15": {"/md": 30, "/s/web":...1 paramsCheck your current credit balance and API usage history. Free, does not cost a credit. Use this if you need to check how many credits remain or review usage patterns. Returns JSON: {"key": "ftch_abc1...", "credits_remaining": 450, "usage": {"2025-01-15": {"/md": 30, "/s/web":...
daysintegerfetchFetch any webpage and return its content as clean Markdown. This is the default tool for reading web pages. Use this whenever you need to read, summarize, extract information from, or analyze the content of a URL. The response is clean Markdown optimized for LLM context window...2 paramsFetch any webpage and return its content as clean Markdown. This is the default tool for reading web pages. Use this whenever you need to read, summarize, extract information from, or analyze the content of a URL. The response is clean Markdown optimized for LLM context window...
urlstringblock_patternsstringfetch_htmlFetch a URL and return raw unprocessed HTML. Only use this if you specifically need the HTML source, such as inspecting page structure, meta tags, or debugging rendering issues. In almost all cases, use the "fetch" tool instead, which returns clean Markdown. Returns the full H...2 paramsFetch a URL and return raw unprocessed HTML. Only use this if you specifically need the HTML source, such as inspecting page structure, meta tags, or debugging rendering issues. In almost all cases, use the "fetch" tool instead, which returns clean Markdown. Returns the full H...
urlstringblock_patternsstringfetch_structured_dataExtract structured data (JSON-LD) from a webpage. Use this when you need machine-readable schema.org data such as product details, recipes, events, articles, reviews, or organization info. Returns a JSON array of structured data objects found on the page. Returns an error if n...2 paramsExtract structured data (JSON-LD) from a webpage. Use this when you need machine-readable schema.org data such as product details, recipes, events, articles, reviews, or organization info. Returns a JSON array of structured data objects found on the page. Returns an error if n...
urlstringblock_patternsstringsearch_newsSearch for recent news articles. Use this whenever you need current events, breaking news, or recent coverage of a topic. Returns articles with direct URLs to the original sources. Returns JSON: {"query": "...", "params": {"country": "US", "lang": "en"}, "count": 5, "articles"...5 paramsSearch for recent news articles. Use this whenever you need current events, breaking news, or recent coverage of a topic. Returns articles with direct URLs to the original sources. Returns JSON: {"query": "...", "params": {"country": "US", "lang": "en"}, "count": 5, "articles"...
qstringlangstringwhenstringlimitintegercountrystringsearch_webSearch the web and return structured results. Use this whenever you need to find information, look something up, answer factual questions, or find URLs related to a topic. Returns JSON: {"query": "...", "params": {"country": "US", "lang": "en"}, "count": 10, "results": [{"titl...4 paramsSearch the web and return structured results. Use this whenever you need to find information, look something up, answer factual questions, or find URLs related to a topic. Returns JSON: {"query": "...", "params": {"country": "US", "lang": "en"}, "count": 10, "results": [{"titl...
qstringlangstringwhenstringcountrystringA powerful MCP (Model Context Protocol) server that gives AI agents web superpowers. Extract content, search the web, monitor sites, and convert HTML to markdown — all through a clean tool interface.
| Tool | Description |
|---|---|
web_extract | Extract structured content from any URL (title, headings, paragraphs, links, images, metadata) |
web_search | Search the web via DuckDuckGo — no API key needed |
web_monitor | Check if a site is up, measure response time, get HTTP headers |
html_to_markdown | Convert any URL or HTML to clean markdown |
web_multi_extract | Extract content from multiple URLs in parallel |
Add to your Claude Code MCP settings (~/.claude/settings.json):
{
"mcpServers": {
"web-tools": {
"command": "npx",
"args": ["@rog0x/mcp-web-tools"]
}
}
}
Add to claude_desktop_config.json:
{
"mcpServers": {
"web-tools": {
"command": "npx",
"args": ["@rog0x/mcp-web-tools"]
}
}
}
npm install -g @rog0x/mcp-web-tools
mcp-web-tools
Use web_extract to get the main content from https://example.com
Use web_search to find "best TypeScript frameworks 2026"
Use web_monitor to check if https://api.example.com is responding
Use html_to_markdown to convert https://docs.example.com/guide to readable markdown
Use web_multi_extract to get content from these URLs: [url1, url2, url3]
MIT — rog0x
csoai-org/pdf-document-mcp
xt765/mcp-document-converter
io.github.xjtlumedia/markdown-formatter
io.github.ai-aviate/better-notion
suekou/mcp-notion-server
meterlong/mcp-doc