Skip to main content
ClaudeWave

Read any web page as a clean, token-efficient AIDocument. Built for AI agents, backed by Lyrenth's independent web index of 2.1B+ pages.

MCP ServersOfficial Registry1 stars0 forksJavaScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/26/2026
Install in Claude Code / Claude Desktop
Method: NPX · path
Claude Code CLI
claude mcp add lyrenth-mcp -- npx -y path
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "lyrenth-mcp": {
      "command": "npx",
      "args": ["-y", "path"],
      "env": {
        "LYRENTH_API_KEY": "<lyrenth_api_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
LYRENTH_API_KEY
Use cases

MCP Servers overview

# Lyrenth MCP server

[![lyrenth-mcp MCP server](https://glama.ai/mcp/servers/lyrenth/lyrenth-mcp/badges/card.svg)](https://glama.ai/mcp/servers/lyrenth/lyrenth-mcp)

[![MCP Badge](https://lobehub.com/badge/mcp/lyrenth-lyrenth-mcp)](https://lobehub.com/mcp/lyrenth-lyrenth-mcp)

Read the web through [Lyrenth](https://lyrenth.com)'s index from any MCP client.

Exposes three tools:

- **`read_url`** turns a public web page into a clean **AIDocument**: stable
  Markdown plus title, description, and structure, with the navigation and
  boilerplate stripped. Your agent reads cleaned, low-token content instead of
  raw HTML, and every result shows how many tokens it saved vs the raw page.
- **`read_urls`** does the same for up to 20 URLs in one batch call.
- **`check_usage`** reports your plan tier and credit usage.

Reads resolve through Lyrenth's cross-caller cache, and for verified domains
they return the publisher's canonical version.

## Hosted, no install

If your MCP client supports remote HTTP servers with a custom header
(Claude and Cursor remote connectors do), there is nothing to run:

- URL: `https://api.lyrenth.com/mcp`
- Header: `Authorization: Bearer aiwk_your_key_here`

Same three tools, same key. The npx path below is for clients that
speak MCP over stdio, and for anyone who prefers a local process.

## Setup

1. Get a free API key at <https://lyrenth.com/signup> (2,000 reads/month, no card).
2. Add the server to your MCP client.

### Claude Desktop (one click)

Download `lyrenth-mcp.mcpb` from the
[latest release](https://github.com/lyrenth/lyrenth-mcp/releases/latest) and
open it. Claude Desktop installs the server and asks for your API key; there is
no config file to edit. The bundle carries the same code as the npm package.

To build it yourself: `./scripts/build-mcpb.sh`.

### Claude Desktop / Cursor (manual config)

Add to your MCP config (Claude Desktop: `claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "lyrenth": {
      "command": "npx",
      "args": ["-y", "lyrenth-mcp"],
      "env": { "LYRENTH_API_KEY": "aiwk_your_key_here" }
    }
  }
}
```

### Claude Code

```sh
claude mcp add lyrenth -e LYRENTH_API_KEY=aiwk_your_key_here -- npx -y lyrenth-mcp
```

Then ask your assistant to read a page, for example: *"Read
https://example.com/article and summarize it."* It will call `read_url` and get
the cleaned AIDocument back.

## Tools

| Tool | Arguments | Returns |
|------|-----------|---------|
| `read_url` | `url` (string, required), `fresh` (boolean, optional), `max_tokens` (integer, optional) | The page as a clean AIDocument: a short provenance header (token count + how much smaller than raw HTML) plus the Markdown body. `fresh: true` forces a fresh fetch instead of the cached copy; `max_tokens` caps the body to your context budget, trimmed at a clean paragraph or sentence boundary. |
| `read_urls` | `urls` (array of 1-20 strings, required), `fresh` (boolean, optional), `max_tokens` (integer, optional) | Up to 20 pages in one call, each as a clean AIDocument, with per-URL error isolation (a failed URL is reported and doesn't block the others). Billed one credit per successfully-read URL. |
| `check_usage` | none | Your plan tier, credits used against your monthly limit, credits remaining, and the reset date. |

## Configuration

| Env var | Required | Default | Notes |
|---------|----------|---------|-------|
| `LYRENTH_API_KEY` | yes | none | Free key at <https://lyrenth.com/signup> |
| `LYRENTH_API_URL` | no | `https://api.lyrenth.com` | Override for staging or self-host |

## Why read through Lyrenth

- **Cleaner, cheaper.** One stable AIDocument shape per URL; far fewer tokens
  than raw HTML to a model.
- **Cached across callers.** The same URL fetched by many agents collapses to a
  minimal number of origin fetches, so it is fast and origin-friendly.
- **Canonical when verified.** When a site's owner has verified with Lyrenth,
  you get the version they authored, kept fresh by their change signal.

## Privacy

The server sends exactly two things to Lyrenth's API (api.lyrenth.com): the
URLs you ask it to read, and your API key to authenticate and meter the call.
Nothing else leaves your machine: no page content you hold locally, no
conversation context, no telemetry. How Lyrenth handles fetched pages and
account data is covered by the privacy policy:
<https://www.lyrenth.com/privacy>.

## License

MIT. See [LICENSE](LICENSE).

## Local build

```sh
npm install
npm run build
LYRENTH_API_KEY=aiwk_... node dist/index.js   # speaks MCP over stdio
```

Part of the [Lyrenth](https://lyrenth.com) project. The AIDocument format is an
open contract; see <https://lyrenth.com/llms-full.txt>.
ai-agentsaidocumentllm-toolsmarkdownmcpmcp-servermodel-context-protocolragweb-reader

What people ask about lyrenth-mcp

What is lyrenth/lyrenth-mcp?

+

lyrenth/lyrenth-mcp is mcp servers for the Claude AI ecosystem. Read any web page as a clean, token-efficient AIDocument. Built for AI agents, backed by Lyrenth's independent web index of 2.1B+ pages. It has 1 GitHub stars and its last recorded update is dated 2026-08-25.

How do I install lyrenth-mcp?

+

You can install lyrenth-mcp by cloning the repository (https://github.com/lyrenth/lyrenth-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is lyrenth/lyrenth-mcp safe to use?

+

Our security agent has analyzed lyrenth/lyrenth-mcp and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains lyrenth/lyrenth-mcp?

+

lyrenth/lyrenth-mcp is maintained by lyrenth. The last recorded GitHub activity is dated 2026-08-25, with 0 open issues.

Are there alternatives to lyrenth-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy lyrenth-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: lyrenth/lyrenth-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/lyrenth-lyrenth-mcp)](https://claudewave.com/repo/lyrenth-lyrenth-mcp)
<a href="https://claudewave.com/repo/lyrenth-lyrenth-mcp"><img src="https://claudewave.com/api/badge/lyrenth-lyrenth-mcp" alt="Featured on ClaudeWave: lyrenth/lyrenth-mcp" width="320" height="64" /></a>

More MCP Servers

lyrenth-mcp alternatives