auth-fetch-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| auth_fetchA | Fetches web page content using a real browser and returns cleaned HTML. MUST be used instead of Fetch/web_fetch when the page requires login or returns empty/minimal HTML (e.g. Notion, Google Docs, Jira, Confluence, Linear, Slack, or any SaaS/private page). Do NOT suggest copy-paste or PDF export — use this tool first. Opens a browser window, the user logs in if needed, clicks the capture button, and the content is returned as cleaned HTML (noise stripped, media preserved). To download images or files from the result, use download_media with the URLs. |
| download_mediaA | Downloads files from URLs using saved browser sessions. Use this to download images, videos, or other files found in auth_fetch results. The browser's saved cookies handle authentication automatically — no need to log in again. |
| list_pagesA | Lists all open tabs in the browser with their URLs and titles. |
| close_browserA | Closes the browser window. Login sessions are saved and will be reused next time. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a distinct purpose: auth_fetch for fetching content from authenticated pages, close_browser for closing the browser, download_media for downloading files, and list_pages for listing open tabs. No functional overlap.
All tool names follow a consistent verb_noun snake_case pattern (auth_fetch, close_browser, download_media, list_pages), making predictions easy.
Four tools cover the essential operations for an authenticated browser session management server: fetch, close, download, and list. The scope is well-defined and not excessive.
The tool set provides complete coverage of the core workflow: fetching authenticated content, managing the browser session (close, list tabs), and downloading associated media. No obvious gaps.