npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

chocodata-mcp

v0.1.0

Published

MCP server for the Chocodata web scraping API. Gives Claude, Cursor and any MCP client tools to scrape Amazon, Walmart, eBay, Bing, TikTok, YouTube, Instagram and 490+ more endpoints.

Readme

chocodata-mcp

MCP server for the Chocodata web scraping API. Gives Claude, Cursor, Cline, Continue and any other MCP-compatible client tools to scrape the web, so an agent can pull live product prices, search results and social profiles without you writing glue code.

Runs over stdio. Node 18+.

Setup

Add it to your client's MCP config. It runs on demand via npx, so there is no global install and no version drift:

{
  "mcpServers": {
    "chocodata": {
      "command": "npx",
      "args": ["-y", "chocodata-mcp"],
      "env": { "CHOCODATA_API_KEY": "asa_live_YOUR_KEY" }
    }
  }
}

Get a key at chocodata.com. The free tier is 1,000 requests, one time, no card.

Claude Desktop: claude_desktop_config.json. Cursor: Settings, then MCP, then Add. Restart the client after editing, then ask it something like "what does this Amazon ASIN cost in Germany?"

Tools

| Tool | What it does | |---|---| | amazon_product | One product by ASIN/ISBN (query) or url. Prices localise to domain. | | amazon_search | Amazon search results. | | walmart_product | One item by url or id. | | walmart_search | Walmart search results. | | ebay_product | One listing with ISO currency, stock status, quantity sold/available. | | ebay_search | eBay search results. | | bing_search | Web results. Good for grounding an answer in current sources. | | bing_images | Image results with source pages. SafeSearch strict by default. | | tiktok_profile | Public profile with follower/like/video counts. | | youtube_video | Title, exact view and like counts, duration, channel. | | instagram_profile | Public profile: followers, bio, post count, verified. | | scrape | Any of the 499 endpoints, for anything above not covered. |

Parameters follow the API's real contract rather than a uniform invention: amazon_product takes query, walmart_product takes url or id, and the Bing tools take q. Each tool's schema documents its own parameters, so the agent picks the right ones.

The generic tool

scrape reaches everything else in the catalog:

target:   "reddit"
resource: "post"
params:   { "post_id": "627akk", "subreddit": "askscience" }

Browse every target and its parameters at chocodata.com/scraper-api.

Errors

Failures come back as readable tool errors rather than stack traces, and say whether retrying will help:

Chocodata error 404 item_not_found: That TikTok handle does not resolve:
it has been deleted, renamed, or is unavailable in this region.
Request id: d2f460a7-...

You are only charged on a 2xx. Errors cost no credits. Retryable failures (429, 5xx, network) are retried automatically with backoff before the agent ever sees them.

Rate limits

120 requests per key per 60 seconds, plus a per-plan concurrency ceiling. An agent looping over many items can hit that; the server backs off and retries rather than failing the whole tool call.

License

MIT