Skip to main content

Introduction

Rover fetches a URL and hands back clean, token-counted Markdown your agent can treat as untrusted data. It strips ads, nav, and chrome with readabilityrs, normalises the page to Markdown, counts the tokens, optionally summarises to a budget, and wraps the body so the model reads the page as data, not instructions. Rover runs as an MCP server and a CLI.

What you get back

Every fetch returns a Markdown document with YAML frontmatter: content hash, token count, language, and an extraction-quality score. The body sits behind a per-response nonce fence that marks it as untrusted. The hash and token count are what make the result reusable. Cache it, re-read it on the next prompt, or diff a later fetch against it.

---
url: "https://en.wikipedia.org/wiki/Rust_(programming_language)"
title: "Rust (programming language) - Wikipedia"
content_hash: "sha256:b3e9…"
estimated_tokens: 14823
tokenizer: "o200k"
extraction_quality: 0.98
---

# Rust (programming language)

Rust is a multi-paradigm, general-purpose programming language…

Every field is documented in Anatomy of a Rover document.

What it handles

ProblemRover's answer
Ads, nav, and chrome inflate token costReadability extraction to clean Markdown
JavaScript-rendered pages return an empty shellOptional headless rendering (the headless feature)
Refetching the same URL wastes tokens and moneyHTTP-aware caching, per-domain rate limiting, robots.txt
A page can smuggle "ignore your instructions" into contextA layered prompt-injection guard

It also does extractive and cloud summarisation, inline image captioning, and batch fetches with streamed progress.

Tools

ToolReturns
fetchA URL as cleaned Markdown.
batch_fetchMany URLs concurrently; streams progress.
summarizeA page compacted via an extractive or cloud backend.
get_metadataSchema.org / Open Graph / Twitter Card metadata, no body.
count_tokensA URL's token cost across five tokenisers.

Full schemas live in MCP tools.

Start here

  • Installation covers Homebrew, the prebuilt binary, and building from source.
  • Quickstart wires Rover in and runs a first fetch.