.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/jae-jae/fetcher-mcp
home/mcp-servers/jae-jae/fetcher-mcp
jae-jae avatar

fetcher-mcp

byjae-jae· 2 MCP servers

Installs

48k

Stars

1.1k

Forks

100

Category

Browser & Automation

View on GitHub

TL;DR

中文 | Deutsch | Español | français | [日本語](ht

How to install fetcher-mcp?

jae-jae/fetcher-mcp
$git clone https://github.com/jae-jae/fetcher-mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install fetcher-mcp by running `git clone https://github.com/jae-jae/fetcher-mcp`, then use it for the current task and follow its documentation at https://github.com/jae-jae/fetcher-mcp.

Files · 1

View on GitHub
README.md
1<div align="center">
2 <img src="https://raw.githubusercontent.com/jae-jae/fetcher-mcp/refs/heads/main/icon.svg" width="100" height="100" alt="Fetcher MCP Icon" />
3</div>
4 
5[中文](https://www.readme-i18n.com/jae-jae/fetcher-mcp?lang=zh) |
6[Deutsch](https://www.readme-i18n.com/jae-jae/fetcher-mcp?lang=de) |
7[Español](https://www.readme-i18n.com/jae-jae/fetcher-mcp?lang=es) |
8[français](https://www.readme-i18n.com/jae-jae/fetcher-mcp?lang=fr) |
9[日本語](https://www.readme-i18n.com/jae-jae/fetcher-mcp?lang=ja) |
10[한국어](https://www.readme-i18n.com/jae-jae/fetcher-mcp?lang=ko) |
11[Português](https://www.readme-i18n.com/jae-jae/fetcher-mcp?lang=pt) |
12[Русский](https://www.readme-i18n.com/jae-jae/fetcher-mcp?lang=ru)
13 
14# Fetcher MCP
15 
16MCP server for fetch web page content using Playwright headless browser.
17 
18> 🌟 **Recommended**: [OllaMan](https://ollaman.com/) - Powerful Ollama AI Model Manager.
19 
20## Advantages
21 
22- **JavaScript Support**: Unlike traditional web scrapers, Fetcher MCP uses Playwright to execute JavaScript, making it capable of handling dynamic web content and modern web applications.
23 
24- **Intelligent Content Extraction**: Built-in Readability algorithm automatically extracts the main content from web pages, removing ads, navigation, and other non-essential elements.
25 
26- **Flexible Output Format**: Supports both HTML and Markdown output formats, making it easy to integrate with various downstream applications.
27 
28- **Parallel Processing**: The `fetch_urls` tool enables concurrent fetching of multiple URLs, significantly improving efficiency for batch operations.
29 
30- **Resource Optimization**: Automatically blocks unnecessary resources (images, stylesheets, fonts, media) to reduce bandwidth usage and improve performance.
31 
32- **Robust Error Handling**: Comprehensive error handling and logging ensure reliable operation even when dealing with problematic web pages.
33 
34- **Configurable Parameters**: Fine-grained control over timeouts, content extraction, and output formatting to suit different use cases.
35 
36## Quick Start
37 
38Run directly with npx:
39 
40```bash
41npx -y fetcher-mcp
42```
43 
44First time setup - install the required browser by running the following command in your terminal:
45 
46```bash
47npx playwright install chromium
48```
49 
50### HTTP and SSE Transport
51 
52Use the `--transport=http` parameter to start both Streamable HTTP endpoint and SSE endpoint services simultaneously:
53 
54```bash
55npx -y fetcher-mcp --log --transport=http --host=0.0.0.0 --port=3000
56```
57 
58After startup, the server provides the following endpoints:
59 
60- `/mcp` - Streamable HTTP endpoint (modern MCP protocol)
61- `/sse` - SSE endpoint (legacy MCP protocol)
62 
63Clients can choose which method to connect based on their needs.
64 
65### Debug Mode
66 
67Run with the `--debug` option to show the browser window for debugging:
68 
69```bash
70npx -y fetcher-mcp --debug
71```
72 
73## Configuration MCP
74 
75Configure this MCP server in Claude Desktop:
76 
77On MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
78 
79On Windows: `%APPDATA%/Claude/claude_desktop_config.json`
80 
81```json
82{
83 "mcpServers": {
84 "fetcher": {
85 "command": "npx",
86 "args": ["-y", "fetcher-mcp"]
87 }
88 }
89}
90```
91 
92## Docker Deployment
93 
94### Running with Docker
95 
96```bash
97docker run -p 3000:3000 ghcr.io/jae-jae/fetcher-mcp:latest
98```
99 
100### Deploying with Docker Compose
101 
102Create a `docker-compose.yml` file:
103 
104```yaml
105version: "3.8"
106 
107services:
108 fetcher-mcp:
109 image: ghcr.io/jae-jae/fetcher-mcp:latest
110 container_name: fetcher-mcp
111 restart: unless-stopped
112 ports:
113 - "3000:3000"
114 environment:
115 - NODE_ENV=production
116 # Using host network mode on Linux hosts can improve browser access efficiency
117 # network_mode: "host"
118 volumes:
119 # For Playwright, may need to share certain system paths
120 - /tmp:/tmp
121 # Health check
122 healthcheck:
123 test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000"]
124 interval: 30s
125 timeout: 10s
126 retries: 3
127```
128 
129Then run:
130 
131```bash
132docker-compose up -d
133```
134 
135## F

Preview

jae-jae/fetcher-mcpjae-jae/fetcher-mcp
Repojae-jae/fetcher-mcp
TypeMCP Servers
CategoryBrowser & Automation
UpdatedJan 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPaimcp

Related

6 picks
Type
  1. microsoft avatarplaywright-mcpPlaywright Tools for MCPMCP ServersJul 202626M36k
  2. cloudflare avatarplaywright-mcpPlaywright Tools for MCPMCP ServersApr 202626M250
  3. microsoft avatarPlaywright MCPBrowser automation for agents via accessibility snapshotsMCP Servers6 days ago25M35k
  4. d4vinci avatarscraplingWeb scraping with stealth HTTP, real browsers, and Cloudflare bypass. CSS selectors supported.MCP ServersJul 2026930k72k
  5. firecrawl avatarfirecrawl-mcp-serverMCP server for Firecrawl — search, scrape, and interact with the web.MCP ServersJul 2026480k7.1k
  6. nickclyde avatarduckduckgo-mcp-serverMCP Server for searching via DuckDuckGoMCP ServersJul 2026121k1.4k