FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
I built a plugin-based web metadata scraper with MCP server support
How-ToWeb Development

I built a plugin-based web metadata scraper with MCP server support

via Dev.to WebdevMingi Choe1mo ago

TL;DR I built web-meta-scraper — a lightweight TypeScript library that extracts metadata from web pages. 14 built-in plugins, 1 dependency, ~5KB. It also ships as an MCP server so AI assistants like Claude can use it as a tool. Why I built this I needed to extract Open Graph, Twitter Cards, and JSON-LD from URLs for a link preview feature. Existing solutions like metascraper (10+ dependencies, ~50KB) and open-graph-scraper (no plugin system, no customization) felt like overkill for what should be a simple task. So I built one with a few goals: Minimal dependencies — only cheerio for HTML parsing, native fetch() for HTTP Composable — pick only the plugins you need Type-safe — full TypeScript definitions for everything Extensible — custom plugins are just functions Quick Start npm install web-meta-scraper import { scrape } from ' web-meta-scraper ' ; const result = await scrape ( ' https://github.com ' ); console . log ( result . metadata ); // { // title: "\"GitHub\"," // description: "

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
22 views

Related Articles

Week 6 — No New Problems. Just Me and Everything I Already Learned.
How-To

Week 6 — No New Problems. Just Me and Everything I Already Learned.

Medium Programming • 2d ago

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)
How-To

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)

Medium Programming • 2d ago

Android Remote Compose:讓 Android UI 不用發版也能更新
How-To

Android Remote Compose:讓 Android UI 不用發版也能更新

Medium Programming • 3d ago

How-To

Learn Something Old Every Day, Part XVIII: How Does FPU Detection Work?

Lobsters • 3d ago

“Learn to Code” Is Dead… Learn to Think Instead
How-To

“Learn to Code” Is Dead… Learn to Think Instead

Medium Programming • 3d ago

Discover More Articles