Server data from the Official MCP Registry
Accountless public-source, SEC Form D and OFAC tools with x402 USDC payment on Base.
About
Accountless public-source, SEC Form D and OFAC tools with x402 USDC payment on Base.
Remote endpoints: streamable-http: https://evidence.regulavita.com/mcp/
Security Report
This is a well-engineered MCP server for financial data and isolated Python execution with strong cryptographic integrity controls and comprehensive input validation. The codebase demonstrates good security practices with defused XML parsing, HTTPS-only network policies, and signed evidence receipts. Minor code quality concerns around broad exception handling and some logging patterns prevent a higher score, but permissions align appropriately with the server's stated purpose as a financial signals and compute platform. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 2 high severity).
3 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
How to Install & Connect
Available as Local & Remote
This plugin can run on your machine or connect to a hosted endpoint. during install.
Documentation
View on GitHubFrom the project's GitHub README.
Isolated Compute, Agent Procurement, Evidence, Source Watch, and GTM Signals
One-call isolated Python execution, brokered machine-service procurement, long-running monitoring jobs, and pay-per-call official-source signals and evidence for autonomous agents. No account, API key, or sales call.
Live service: evidence.regulavita.com | OpenAPI | Agent manifest | Coinbase Bazaar listing
The Source Watch demand hypothesis, attribution rules, and stop/scale gates are pre-registered in SOURCE_WATCH_EXPERIMENT.md. The first independent buyer's on-chain cohort, interpretation, and resulting actions are recorded in INDEPENDENT_BUYER_ANALYSIS.md.
Agent-Payable Products
| Endpoint | Result | Price |
|---|---|---|
POST /v1/compute/python-run | Run bounded Python 3.11 code in an ephemeral isolated sandbox; one payment covers create, execute, and terminate and returns output, supplier settlements, hashes, and a signed receipt | $0.03 USDC |
POST /v1/procure/company-profile | Procure bounded company retrieval and schema-constrained normalization from pinned x402 suppliers, with derived fields, source links, contradictions, supplier settlements, partial-failure state, hashes, and a signed receipt | $0.25 USDC |
POST /v1/web/source-snapshot | One-shot normalized extraction from a public HTTPS HTML, JSON, XML, or text source, with optional literal excerpts, a content hash, and a signed receipt | $0.03 USDC |
POST /v1/monitors/source-change | Monitor one public HTTPS text, HTML, JSON, or XML source every six hours for 30 days, with private polling and optional signed webhooks | $1.00 USDC |
POST /v1/gtm/form-d-funding-leads | New SEC Form D private-offering signals filtered by issuer state, industry keyword, and reported amount sold, with related people, official links, and a cursor | $0.05 USDC |
POST /v1/ofac/payment-preflight | Compact stop/no-exact-match decision for an EVM destination address against current official OFAC data | $0.01 USDC |
POST /v1/sec/filing-change-signal | New SEC 8-K, 10-Q, or 10-K filings for a ticker since a timestamp, with links and a next-check cursor | $0.01 USDC |
POST /v1/ofac/exact-identifier-evidence | Exact OFAC SDN or Consolidated lookup for a crypto address, OFAC UID, or exact name, with versioned source proof | $0.05 USDC |
POST /v1/sec/filing-trigger-delta | New SEC filings for a ticker and timestamp or CIK and accession, plus deterministic XBRL deltas and a signed receipt | $0.10 USDC |
All routes use x402 v2 on Base mainnet. An x402-compatible client receives a
standard HTTP 402 challenge, pays USDC, retries automatically, and receives the
JSON result. The production service has a hard $10.00 accepted-revenue cap
per UTC day.
The procurement experiment tests a brokered action, not another raw-data
wrapper. A free quote at POST /v1/procure/company-profile/quote exposes the
fixed customer price, supplier plan, maximum supplier cost, and partial-result
policy before payment. The hypothesis and stop/scale gates are pre-registered
in PROCUREMENT_EXPERIMENT.md.
The isolated Python experiment compresses a three-payment sandbox lifecycle into
one buyer call. A free quote exposes the fixed $0.03 customer price and maximum
$0.015 supplier cost before payment. The bounded hypothesis and gates are in
PYTHON_RUN_EXPERIMENT.md.
Source Watch is a long-running job rather than a lookup. It accepts only public HTTPS sources, does not follow redirects, caps each response at 1 MB, stores normalized text rather than raw pages, and expires automatically after 30 days. The paid response returns a bearer token for private status polling and, when requested, a separate HMAC secret for verifying change webhooks.
Monitoring tools may send an empty unauthenticated POST to any paid route.
The service treats that as the published example request and returns the normal
HTTP 402 challenge without charging. Non-empty malformed or schema-invalid
requests are still rejected before payment.
Discover and Inspect
Search the Coinbase Bazaar from an Agentic Wallet CLI:
npx awal@latest x402 bazaar search "OFAC exact identifier evidence"
npx awal@latest x402 bazaar search "SEC Form D funding sales trigger"
npx awal@latest x402 bazaar search "public source snapshot normalized text signed receipt"
Inspect the free contracts before paying:
curl https://evidence.regulavita.com/v1/ofac/sample
curl https://evidence.regulavita.com/v1/compute/python-run/sample
curl https://evidence.regulavita.com/v1/procure/company-profile/sample
curl https://evidence.regulavita.com/v1/sec/sample
curl https://evidence.regulavita.com/v1/gtm/form-d-funding-leads/sample
curl https://evidence.regulavita.com/v1/web/source-snapshot/sample
curl https://evidence.regulavita.com/v1/monitors/source-change/sample
curl https://evidence.regulavita.com/llms.txt
An unpaid valid request demonstrates the machine-readable payment challenge:
curl -i -X POST \
https://evidence.regulavita.com/v1/gtm/form-d-funding-leads \
-H 'Content-Type: application/json' \
-d '{"since":"2026-08-03T00:00:00Z","states":["CA","NY"],"minimum_amount_sold_usd":"1000000","limit":10}'
Decision And Evidence Layers
The two $0.01 routes return compact, unsigned decisions for frequent agent
workflows. The Form D GTM feed and premium evidence routes add:
- Official publisher and source-version metadata.
- Canonical request, source-bundle, component, and result SHA-256 hashes.
- An Ed25519-signed evidence receipt.
- Explicit data freshness and parser version.
- Paid-result replay bound to the original payment proof.
The OFAC route is exact-match evidence only. It is not fuzzy screening, ownership/control analysis, sanctions clearance, transaction authorization, or legal advice. The SEC route returns factual filing records and deterministic deltas, never materiality opinions, valuation, investment advice, or execution instructions.
The Form D route is a factual sales trigger. Form D is an issuer-filed notice of an exempt offering; its total offering amount is not proof of capital raised. The API exposes the separately reported amount sold and preserves official SEC links so consuming agents can state that distinction accurately.
Operator Documentation
The implementation, source controls, payment flow, deployment configuration,
operating limits, and experiment gates are documented in
autonomous_data_api/README.md.
Validate a checkout with:
PYTHONPATH=. uv run --with-requirements autonomous_data_api/requirements.txt \
pytest autonomous_data_api/tests -q
uvx ruff check autonomous_data_api
uvx ruff format --check autonomous_data_api
docker build -t official-source-evidence-api:local \
-f autonomous_data_api/Dockerfile .
This remains a capped demand experiment. Owner-funded calls prove technical settlement and discovery, not independent demand, revenue quality, or a validated business.
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Fetch
Freeby Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
Git
Freeby Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
Toleno
Freeby Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
MCP Marketplace
Freeby mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
MarkItDown
Freeby Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
