DAP Bellwether
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DAP BellwetherWhat regulatory changes has the SEC published recently?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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, 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.
Related MCP server: canlii-mcp
Using it
Add the server as a custom connector in Claude:
https://bellwether.dap.solutions/mcpIn Claude, open Customize, then Connectors.
Click the plus button next to Connectors and choose add custom connector.
Give it a name, paste the URL above, and click Add.
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 |
| What has a regulator published on this topic, or in this window |
| What is new across all regulators |
| Full record, plus every revision observed since first collection |
| 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_coveragewill 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,LIKEwith 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
npm install
npm test # 50 tests, no network required
npm run verify:sources # confirms every feed endpoint is live, requires networkverify: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:
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:
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
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, run your own. No lock-in.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceMCP server for the RegIntel API — structured regulatory data across 41 jurisdictions and 212 regulationsLast updated51MIT
- Alicense-qualityCmaintenanceMCP server providing access to Canadian legal information metadata (case law and legislation) from CanLII.Last updated292MIT
- Alicense-qualityCmaintenanceAn offline-first MCP server for searching, retrieving, and analyzing Turkish banking regulation data from BDDK and mevzuat.gov.tr.Last updated13MIT
- Alicense-qualityCmaintenanceMCP server for Esheria Regulatory Pack API, enabling regulatory intelligence tools such as health checks, pack discovery, obligations, penalties, and citation-backed compliance workflows.Last updatedApache 2.0
Related MCP Connectors
MCP for CanLII: Canadian case law and legislation metadata (federal, provincial, territorial).
MCP server for US Treasury Fiscal Data — debt, interest rates, exchange rates, and spending.
MCP server for Brazilian Federal Senate open data (legislative, administrative, e-Cidadania).
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bsibeth234/dap-bellwether'
If you have feedback or need assistance with the MCP directory API, please join our Discord server