Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Markd

БесплатноНе проверен

A server that extracts clean Markdown from web pages using headless Chrome, reducing token usage by up to 90% for AI tools like Claude.

GitHubEmbed

Описание

A server that extracts clean Markdown from web pages using headless Chrome, reducing token usage by up to 90% for AI tools like Claude.

README

An official Model Context Protocol (MCP) server that brings Markd straight into your AI coding workflow.

🚀 Why this exists: stop burning context tokens

Ask an AI like Claude or GPT-4 to read a webpage, and it usually ends up chewing through raw HTML. That raw HTML can easily run 25,000 to 30,000 tokens once you count inline styles, tracking scripts, and bloated DOM markup.

Markd fixes that. It spins up a headless Chrome browser (via Puppeteer) in the background, fully renders the page (JavaScript included), and pulls out just the real content using Mozilla Readability and Turndown.

That same article, converted to clean Markdown, comes out to around 2,000 to 2,500 tokens. That's roughly a 90% drop in token usage every time your AI pulls something off the web. Faster responses, cheaper API bills, and a lot less noise clogging up the context window.

🛠️ What it gives your AI

One tool, does the job well:

  • extract_markdown
    • Input: { url: "string" }
    • What it does: fetches the URL, renders it fully, and hands back the main article as clean Markdown.

🌍 How to Use (NPM Package)

The fastest and most reliable way to use Markd-MCP across any machine (Windows, Mac, Linux) is to install it globally. This guarantees the headless Chrome browser is installed properly and makes the tool instant for your AI.

1. Install Globally

Open your terminal and run:

npm install -g markd-mcp

2. Add to Claude Code

Add this to your claude.json (or use claude mcp add):

{
  "mcpServers": {
    "markd-mcp": {
      "command": "markd-mcp",
      "args": []
    }
  }
}

💻 Running it locally (For Developers)

If you want to modify the code or run it from source.

1. Install

git clone https://github.com/mayankfulwariya/markd-mcp.git
cd markd-mcp
npm install
npx puppeteer browsers install chrome

2. Point your AI client at it

Claude Code

Add this to your claude.json, or use the claude mcp add command:

{
  "mcpServers": {
    "markd-mcp": {
      "command": "node",
      "args": ["/absolute/path/to/markd-mcp/src/index.js"]
    }
  }
}

Claude Desktop

Same snippet, different file:

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Just swap in the real path to wherever you cloned the repo.

Under the hood

  • Puppeteer – renders JS-heavy sites (React, Next.js docs, that kind of thing) fully before anything gets extracted.
  • Mozilla Readability – the same engine behind Firefox's Reader View. Strips out sidebars, headers, footers, ads, all the junk.
  • Turndown – turns the clean HTML into proper Markdown.

from github.com/mayankfulwariya/markd-mcp

Установка Markd

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/mayankfulwariya/markd-mcp

FAQ

Markd MCP бесплатный?

Да, Markd MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Markd?

Нет, Markd работает без API-ключей и переменных окружения.

Markd — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Markd в Claude Desktop, Claude Code или Cursor?

Открой Markd на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare Markd with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории browse