authenticated-fetch
Installation
SKILL.md
Authenticated Fetch
Fetch any URL through the local Frevana daemon and Chrome Extension session, returning the raw response body — useful for JSON/API endpoints or pages that require the user's login.
Purpose
This skill fetches a URL using the Chrome Extension-backed Frevana MCP tool frevana_fetch. The request runs first-party inside the user's logged-in Chrome, so it carries the browser session (cookies included) and can reach data behind a login that a plain HTTP client (curl, requests) cannot.
Inputs:
url(required) - absolute URL to fetch (must be a public host; localhost/LAN/cloud-metadata are refused by the tool)method(optional) - HTTP method, defaults toGETtimeout(optional) - Frevana tool timeout in milliseconds, default comes from the tool
Output:
- the raw response body as returned by the server (often JSON for an API endpoint)
Return the body as-is when the user wants the raw data; summarize only if asked.