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

changeflow-mcp-server

v1.0.3

Published

Changeflow MCP server - monitor any website and get AI-enriched change intelligence. Manage sources, search changes, create monitors.

Downloads

350

Readme

Changeflow MCP Server

Monitor any website and get AI-enriched change intelligence via MCP. Manage sources, search changes, and automate web monitoring from Claude, Harvey, or any MCP client.

Requires a Changeflow API token. Get one from your account settings.

What is Changeflow?

Changeflow is an enterprise web intelligence platform. It monitors web pages, PDFs, RSS feeds, and APIs for changes, then uses AI to tell you what changed, why it matters, and what to do about it. Used by compliance teams, legal researchers, competitive intelligence analysts, and procurement teams at Fortune 500 companies and Am Law 200 firms.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "changeflow": {
      "command": "npx",
      "args": ["changeflow-mcp-server"],
      "env": {
        "CHANGEFLOW_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

Then ask Claude: "List my Changeflow sources" or "Create a new source to monitor fda.gov/guidance"

Remote (Harvey, OpenAI, Claude Code)

Connect directly to the Streamable HTTP endpoint:

POST https://changeflow.com/mcp
Content-Type: application/json
Accept: application/json, text/event-stream
Authorization: Bearer your_api_token_here

Rate limit: 100 requests per hour.

Tools

list_sources

List all your monitored sources with status, tags, and check frequency.

Parameters:

  • tag - Filter by tag
  • limit - Max results (default 50, max 200)

get_source

Get full details for a specific source by its share code.

Parameters:

  • source_id (required) - Share code of the source

get_changes

Search and list recent changes across your monitored sources.

Parameters:

  • query - Keyword search across change content
  • since - ISO 8601 date
  • type - Filter by type: link (new pages found) or change (page content changed)
  • tag - Filter by source tag
  • source_id - Filter to a specific source
  • limit - Max results (default 50, max 200)

get_change

Get full details of a single change including AI summary and structured diff.

Parameters:

  • change_id (required) - Change ID (v_123 for page changes, l_456 for link discoveries)

create_source

Create a new source to monitor.

Parameters:

  • url (required) - URL to monitor
  • looking_for - What to watch for, in plain English
  • frequency - Check frequency (e.g. "hourly", "daily", "every 6 hours")
  • tags - Comma-separated tags

check_source

Trigger an immediate check on a source.

Parameters:

  • source_id (required) - Share code of the source

pause_source / resume_source

Pause or resume monitoring on a source.

Parameters:

  • source_id (required) - Share code of the source

Getting Your API Token

  1. Sign up at changeflow.com
  2. Go to Account > API
  3. Copy your API token
  4. Set it as CHANGEFLOW_API_TOKEN environment variable

Free Regulatory Intelligence

Looking for free, public regulatory data without authentication? Use the GovPing MCP Server instead. It provides open access to 27,000+ structured regulatory changes.

Links

Rate Limits

License

MIT