1. Conduid
  2. Browser
  3. Article Scraper MCP
MCP server · Browser

Article Scraper MCP

MCP to get an article text from an URL

Unclaimed MIT last commit a year ago scrapingaibrowsermcp
49Fair

Scored 3 months ago · breakdown

About Article Scraper MCP

Article Scraper MCP is an MCP server published by dmitriiweb in the Browser category: mCP to get an article text from an URL. It has been installed 0 times through Conduid.

The repository has 2 stars and 0 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx article-scraper-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Article Scraper MCP

Powered by Claude · Grounded in docs

I know everything about Article Scraper MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Article Scraper MCP

A Model Context Protocol (MCP) server that fetches article data from URLs using newspaper3k.

Features

  • Extract article title, text, author, and publication date
  • Robust error handling and URL validation
  • Structured data output
  • Built with FastMCP for easy integration

Installation

Install directly from PyPI:

uvx article-scraper-mcp

Usage

Add to your MCP client configuration:

{
  "mcpServers": {
    "article-scraper": {
      "command": "uvx",
      "args": ["article-scraper-mcp"]
    }
  }
}

API

fetch_article(url: str) -> dict[str, Any]

Fetches and parses a news article from the given URL.

Parameters:

  • url: The URL of the news article to fetch

Returns: A dictionary containing:

  • title: Article title
  • text: Article content text
  • author: Author name(s) (may be None)
  • date: Publication date in ISO format (may be None)

Raises:

  • ValueError: If URL is invalid or article cannot be parsed
  • requests.RequestException: If HTTP request fails

Requirements

  • Python 3.11+
  • newspaper3k
  • requests
  • loguru
  • mcp[cli]

License

MIT

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Article Scraper MCP

How do I install Article Scraper MCP?

Run npx article-scraper-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Article Scraper MCP safe to use with an AI agent?

Its trust score is 49 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Article Scraper MCP still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.