Skip to main content
ClaudeWave

A free public MCP connector serving regulatory publications from financial regulators in Canada, the United States, the United Kingdom and the European Union.

MCP ServersOfficial Registry0 stars0 forksJavaScriptMITUpdated today
Install in Claude Code / Claude Desktop
Method: NPX · wrangler
Claude Code CLI
claude mcp add dap-bellwether -- npx -y wrangler
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "dap-bellwether": {
      "command": "npx",
      "args": ["-y", "wrangler"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# DAP Bellwether

A free regulatory change feed for financial regulators in Canada, the United States, the United Kingdom and the European Union, delivered as an MCP connector.

No account. No key. No seat licence. Paste a URL and it is there.

Built and maintained by [Dartmouth Advisory Partners](https://dap.solutions), Toronto.

## What it does

Bellwether collects what financial regulators publish, normalises it into one record shape, and serves it to any MCP client as a set of read-only tools. It holds prior state, so it can tell you that a document was amended after publication and what the earlier text said. That is the difference between detecting change and displaying a list.

Coverage begins from when the service first collected each source. It is not a complete historical archive, and the tools say so rather than letting an absence of results look like an absence of regulation.

This is a public information service. It is not legal or compliance advice.

## Using it

Add the server as a custom connector in Claude:

```
https://bellwether.dap.solutions/mcp
```

1. In Claude, open Customize, then Connectors.
2. Click the plus button next to Connectors and choose add custom connector.
3. Give it a name, paste the URL above, and click Add.
4. In a chat, click the plus button, hover Connectors, and toggle it on.

There is nothing to authenticate and nothing to configure. Adding a connector does not switch it on by itself, so the last step matters. Free plan users are limited to one custom connector, which is one reason a Connectors Directory listing is worth pursuing. No submission has been made yet. On Team and Enterprise plans an owner adds it for the organization first.

The Worker also answers on `https://dap-bellwether.dap-solutions.workers.dev/mcp`, which is kept enabled as a fallback and serves an identical response. Hand out the `bellwether.dap.solutions` address.

### Tools

| Tool | What it answers |
| --- | --- |
| `search_regulatory_changes` | What has a regulator published on this topic, or in this window |
| `recent_regulatory_changes` | What is new across all regulators |
| `get_regulatory_change` | Full record, plus every revision observed since first collection |
| `list_coverage` | What is monitored, and how fresh each source is |

All four are read-only. There is no write surface.

## Coverage

Canada: OSFI, OSC.
United States: SEC (press releases, and proposed and final rules through the Federal Register), FINRA, CFTC.
United Kingdom: FCA.
European Union: ESMA, EBA.

The live list is always what `list_coverage` returns, since a source that fails verification is disabled rather than shown.

Verified against the live web on 2026-07-24. Three regulators are deliberately absent:

- **CIRO** returns 403 to automated clients at every address, including the site root, so there is nothing to collect.
- **TPR** publishes no RSS feed.
- **EIOPA** publishes no RSS feed.

They are listed as not monitored rather than quietly omitted, because the point of `list_coverage` is that an absence of results can be trusted to mean an absence of publications.

Two limits worth knowing:

- **ESMA publishes no date on its items.** Those records are ordered by when Bellwether first collected them, and every result says so in place of a date rather than showing a collection date where a publication date belongs. Their first appearance is a burst of items all collected the same day.
- **The United Kingdom rests on the FCA alone.** If that feed breaks, the jurisdiction goes dark, and `list_coverage` will show it.

## Architecture

```
cron (every 6h) -> ingest -> normalise -> hash -> D1
                                                  |
                              MCP tools <---------+
```

A scheduled job pulls each feed, normalises RSS 2.0, RSS 1.0 (RDF) and Atom into one record shape, hashes the content, and writes to D1. The MCP tools read only from D1 and never call a regulator during a user request.

That separation is deliberate. If the tools fetched regulators on demand, then every outage, rate limit or retired feed would become a broken connector in front of a user, and there would be no prior state to compare against, so nothing could actually be detected as a change.

Sources are isolated during ingest. One regulator failing is recorded against that source and reported through `list_coverage`; the rest of the run continues.

### Notes on choices

- **No auth.** The entire surface is public regulatory material. There is nothing here to protect and nothing a user can damage, and skipping OAuth removes the largest source of directory review friction.
- **D1 rather than Postgres.** The store lives inside the same Worker with no external credentials and no egress. For a free public read-only surface, fewer moving parts wins.
- **The MCP layer is written directly against JSON-RPC.** The reference SDK's HTTP transport expects a Node request and response pair, and the Workers path around it wants Durable Objects for session state. A read-only server has no session state worth keeping, so the stateless JSON mode the specification already permits is simpler and has less to break.
- **Keyword search is `LIKE`, not FTS5.** At the volumes these feeds produce, `LIKE` with the jurisdiction and date indexes is comfortably fast, and it avoids keeping an FTS index in sync through revisions. Worth revisiting if the corpus grows an order of magnitude.

## Deploying

```bash
npm install
npm test                     # 50 tests, no network required
npm run verify:sources       # confirms every feed endpoint is live, requires network
```

`verify:sources` must pass before the first deploy, and again after any change to the registry. It checks that each feed resolves, parses, carries recent items and carries dates. The last two matter more than they sound: the first sweep of this registry produced two passes that were false, an SEC feed answering 200 while frozen since 2023 and an FCA feed returning twenty items with no parseable date between them. Both would have shipped as healthy coverage against a check that only asked whether a document arrived.

Anything that fails is corrected or set to `enabled: false`. Feeds that are legitimately sparse or legitimately undated carry an explicit flag on the registry entry, so the exception is recorded and reported on every run rather than the threshold being lowered for everyone.

Then:

```bash
npx wrangler d1 create bellwether        # paste database_id into wrangler.toml
npm run db:migrate                       # applies schema.sql to the remote D1
npx wrangler deploy
npx wrangler d1 execute bellwether --remote --command "SELECT COUNT(*) FROM changes"
```

The first ingest runs on the next cron tick. To trigger one immediately against the deployed database rather than waiting up to six hours:

```bash
npx wrangler dev --remote --test-scheduled     # then, in another shell:
curl "http://localhost:8790/__scheduled?cron=0+*/6+*+*+*"
```

Use `--remote` rather than plain `wrangler dev`. Local `workerd` cannot reach every regulator: OSFI and CFTC both fail there with a header-independent connection error while succeeding from Cloudflare's network, so a local run will under-report coverage and tell you a source is broken when it is not.

### Verifying it works

```bash
curl https://bellwether.dap.solutions/health

curl -X POST https://bellwether.dap.solutions/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
```

`/health` reports record count, feeds monitored, and any feed currently failing.

Both hostnames should return byte identical output. If the custom domain fails while the workers.dev fallback answers, the problem is DNS or the certificate, not the Worker.

## Adding a regulator

Add an entry to `SOURCES` in `src/sources.js`, run `npm run verify:sources`, and deploy. Nothing else changes: the parser handles the three feed dialects, and the tools read whatever is in the store.

## Privacy policy

The connector collects no personal data. This page counts visits without cookies or identifiers.

This section is kept word for word in step with the privacy section rendered on the landing page, in `src/landing.js`. Change one and change the other.

- **What is stored.** Only regulatory publications retrieved from public regulator websites: title, link, summary, publication date and revision history. No user data of any kind is written to the database.
- **What is received.** Tool calls arrive as search parameters, for example a keyword or jurisdiction. These are used to answer the request and are not stored, logged to durable storage, or associated with any identity.
- **Accounts.** There are none. The service has no authentication, so it holds no credentials, email addresses or identifiers.
- **Analytics.** This page uses Cloudflare Web Analytics, a cookieless measurement service. It records the page viewed, the referring link, browser and operating system, approximate country and page load timings. It sets no cookies and writes nothing to your device. Visitor IP addresses are used to derive country and are not stored by the service. The connector endpoint at /mcp does not load the beacon, so tool calls carry no analytics of any kind.
- **Third party sharing.** Regulatory data is not sold, shared or transferred. This page loads no third party fonts, no advertising and no cross site trackers. The only third party request it makes is the analytics beacon described above.
- **Retention.** Regulatory records and their revision history are retained indefinitely, because the historical record is the point of the service. Request parameters are not retained.
- **Infrastructure.** Hosted on Cloudflare Workers and D1, with Cloudflare Web Analytics on this page. Cloudflare processes requests as an infrastructure provider and as an analytics processor under its own terms.
- **Contact.** bsibeth@dap.solutions

## Licence

MIT. Use it, fork it, ru

What people ask about dap-bellwether

What is bsibeth234/dap-bellwether?

+

bsibeth234/dap-bellwether is mcp servers for the Claude AI ecosystem. A free public MCP connector serving regulatory publications from financial regulators in Canada, the United States, the United Kingdom and the European Union. It has 0 GitHub stars and was last updated today.

How do I install dap-bellwether?

+

You can install dap-bellwether by cloning the repository (https://github.com/bsibeth234/dap-bellwether) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is bsibeth234/dap-bellwether safe to use?

+

bsibeth234/dap-bellwether has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains bsibeth234/dap-bellwether?

+

bsibeth234/dap-bellwether is maintained by bsibeth234. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to dap-bellwether?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy dap-bellwether to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: bsibeth234/dap-bellwether
[![Featured on ClaudeWave](https://claudewave.com/api/badge/bsibeth234-dap-bellwether)](https://claudewave.com/repo/bsibeth234-dap-bellwether)
<a href="https://claudewave.com/repo/bsibeth234-dap-bellwether"><img src="https://claudewave.com/api/badge/bsibeth234-dap-bellwether" alt="Featured on ClaudeWave: bsibeth234/dap-bellwether" width="320" height="64" /></a>

More MCP Servers

dap-bellwether alternatives