Labsco
MCP SERVER

HDW MCP Server

by horizondatawave

Five tools that turn LinkedIn, Reddit, YouTube, SEC EDGAR and any URL into one queryable dataset.

Site Crawling & Scraping Infrastructure
Summary
Fetch once, then ask as many questions as you like.

The cache key is the design: one paid fetch, then paging, filtering and exporting are free for seven days. One caveat to carry with it — an export URL needs no token to open, so treat the link as the data itself.

What it is

A hosted MCP server at `https://mcp.anysite.io/mcp`, published on npm as `@anysiteio/mcp`. Since 3.0.0 the package is a thin stdio bridge to that server rather than a second implementation, so tools, caching and exports all come from one place.

What you get
  • `discover(source, category)` — the endpoints in a category with their parameters and hints; always the first call
  • `execute(source, category, endpoint, params)` — fetches the data and returns the first 10 items plus a `cache_key`
  • `get_page(cache_key, offset, limit)` — pages through the cached result without re-fetching, with `limit` capped at 50
  • `query_cache(cache_key, ...)` — filter, sort, aggregate and group the cached items server-side instead of in the model's context
  • `export_data(cache_key, output_format, ...)` — the whole dataset as `json`, `jsonl` or `csv`, returned as a download URL
  • Eight `crm_*` tools when the CRM integration is enabled on your account: connections, schema, upsert contacts and companies, query, undo
  • Sources reachable through discovery: LinkedIn, Instagram, Twitter/X, Reddit, YouTube, SEC EDGAR, Y Combinator, Crunchbase, DuckDuckGo, a universal web parser, plus parsers for GitHub, Amazon, Google Maps, G2, BuiltWith, Apify, GLEIF and Newegg
  • Results cached server-side for 7 days, so one fetch is followed by unlimited paging, querying and exporting without paying credits again
  • A companion set of packaged workflows for Claude Code — lead generation, competitor intelligence, market research, pain mining, brand reputation, positioning
Requirements

An anysite.io account. MCP Unlimited is $30 a month with a 6 req/min fair-use limit; credit-based plans start at Starter $49. Connect over OAuth, or put an API key on the URL; the stdio bridge takes `ANYSITE_ACCESS_TOKEN`, optionally from `~/.anysite-mcp.env`. On Claude Desktop, set Tool access to **Tools already loaded** — load-on-demand matches on names, and `discover` and `execute` are too generic for it to work. MIT.

Setup effort

One command plus a key — npm install -g @anysiteio/mcp, then supply credentials