auth-fetch-mcp by ymw0407
35 score
Enables AI assistants to access content from authenticated web pages by opening a real browser for manual login and session capture. It saves browser profiles locally so users only need to log in once per service for future automated access.
Ranked #680 out of 1728 indexed tools.Actively maintained with commits in the last week.
Is this your tool? Claim this listing to add maintainer context, get a verified badge, and unlock analytics.
Claim listing → Signal Breakdown
Installs 0
Freshness 1d ago
Issue Health 50%
Stars 2
Platform Breadth 1 platform
Contributors 1
Description Detailed
How to Improve
Contributors medium impact
Stars low impact
Platforms medium impact
Supported Platforms
From the README
# auth-fetch-mcp
MCP server that lets AI assistants fetch content from authenticated web pages.
When your AI tries to read a URL that requires login, this tool opens a real browser for you to sign in — then captures the page content. Sessions are saved locally, so you only log in once per service.
## Demo
> "Summarize this Notion page for me"
A browser opens with a **Capture** button. Log in if needed, then click it:
The AI receives the full page content and responds:
## Quick Start
### Claude Code
```bash
claude mcp add --scope user auth-fetch -- npx auth-fetch-mcp@latest
```
### .mcp.json (Cursor, Windsurf, etc.)
```json
{
"mcpServers": {
"auth-fetch": {
"command": "npx",
"args": ["auth-fetch-mcp@latest"]
}
}
}
```
Chromium is auto-installed on first run if not already present.
## How It Works
1. Ask your AI to read any authenticated page — just paste the URL.
2. A browser window opens automatically and navigates to the page.
3. Log in as you nor Read full README on GitHub →