Web-scraping toolkit with 22 tools for structured web data as JSON for AI agents.
PyScrappy MCP server exists for a simple reason — assistants are far more useful when they can act on PyScrappy directly instead of describing what you should do. Web-scraping toolkit with 22 tools for structured web data as JSON for AI agents.
PyScrappy is an AI-native web scraping toolkit that turns websites into structured, LLM-ready data. Use it as a Python library or expose it as an MCP server for AI agents.
Once PyScrappy is connected, these are the calls the assistant has available:
scrape_url — Scrape any URL — text, links, images, tables, metadatascrape_wikipedia — Fetch a Wikipedia article (full / paragraphs / headers)scrape_stock — Yahoo Finance quotes, history, and profilesscrape_news — RSS/Atom feeds, auto-discovered site feeds, or a single articlesearch_images — Image search (returns URLs + metadata)search_youtube — YouTube video searchsearch_linkedin_jobs — Public LinkedIn job listingssearch_github — GitHub repository search (stars, language, …)search_hackernews — Hacker News story search (points, comments)search_books — Book search via Open Library (title, author, year)get_weather — Current weather for a place (no key)get_crypto — Cryptocurrency prices and market data (CoinGecko)The server ships on PyPI as pyscrappy, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
You will need 2 environment variables: OMDB_API_KEY, YOUR_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
This sits in the search and retrieval group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. PyScrappy's toolset — scrape_url, scrape_wikipedia, scrape_stock and 11 more — is a fair guide to whether it matches your workflow. It is maintained by mldsveda; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against PyScrappy's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| scrape_url | Scrape any URL — text, links, images, tables, metadata |
| scrape_wikipedia | Fetch a Wikipedia article (full / paragraphs / headers) |
| scrape_stock | Yahoo Finance quotes, history, and profiles |
| scrape_news | RSS/Atom feeds, auto-discovered site feeds, or a single article |
| search_images | Image search (returns URLs + metadata) |
| search_youtube | YouTube video search |
| search_linkedin_jobs | Public LinkedIn job listings |
| search_github | GitHub repository search (stars, language, …) |
| search_hackernews | Hacker News story search (points, comments) |
| search_books | Book search via Open Library (title, author, year) |
| get_weather | Current weather for a place (no key) |
| get_crypto | Cryptocurrency prices and market data (CoinGecko) |
| convert_currency | Exchange rates and currency conversion |
| define_word | Word definitions and examples |
{
"mcpServers": {
"pyscrappy": {
"command": "pyscrappy-mcp",
"env": { "OMDB_API_KEY": "your-key" }
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| OMDB_API_KEY | Credential the server authenticates with. | Yes |
| YOUR_KEY | Credential the server authenticates with. | Yes |
The simplest web tool that matters — fetch any URL and get model-ready markdown back.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Search built for AI, not humans — semantic web search that returns model-ready content, plus code context.
Answers, not links — delegate questions to Perplexity's search-grounded models and get cited responses back.
Put 6,000+ pre-built scrapers at your assistant's fingertips through one MCP endpoint.