Changeflow MCP Server

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

Local serverstdioGo

What is the Changeflow MCP MCP server?

Most developer tooling work still happens through a UI a human drives. Changeflow MCP MCP server moves it into the conversation instead. Changeflow MCP server - monitor any website and get AI-enriched change intelligence. Manage sources, search changes, create monitors.

The short version

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.

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.

The tools it exposes

The server publishes 6 tools. What each one is for:

  • list_sources — List all your monitored sources with status, tags, and check frequency
  • get_source — The get_source tool exposed by this server
  • get_changes — Search and list recent changes across your monitored sources
  • get_change — Get full details of a single change including AI summary and structured diff
  • create_source — The create_source tool exposed by this server
  • check_source — The check_source tool exposed by this server

What it needs from you

Configuration is passed through the environment: CHANGEFLOW_API_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

How it compares

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Changeflow MCP's toolset — list_sources, get_source, get_changes and 3 more — is a fair guide to whether it matches your workflow. It is maintained by stevebutterworth; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
list_sourcesList all your monitored sources with status, tags, and check frequency.
get_sourceThe get_source tool exposed by this server.
get_changesSearch and list recent changes across your monitored sources.
get_changeGet full details of a single change including AI summary and structured diff.
create_sourceThe create_source tool exposed by this server.
check_sourceThe check_source tool exposed by this server.

How to install the Changeflow MCP MCP server

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

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
CHANGEFLOW_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Changeflow MCP to list sources.
  • Use Changeflow MCP to get source.
  • Use Changeflow MCP to get changes.

Frequently asked questions

It connects Changeflow MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (list_sources, get_source, get_changes, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Changeflow MCP directly.