NRG-CC005 (FORTE) · February 2026 · Real production data · Mandinet Replacement Proof of Concept
| Patient ID | Site | Type | Specify | Amount | OPEN |
|---|
| Patient ID | Site | Type | Amount | OPEN |
|---|
| Site | Records | OPEN=Y | OPEN=N | Hold % |
|---|
| VendorBillID | Vendor | Inv# | BatchID | Subsidiary | APAcct | ServiceDate | PostingPeriod | PSABill? | ExpAcct | Amount | Project | Protocol | PatientID | PaymentType | OrigSite | Status |
|---|
| Funding Source | Component / SPECIFY | Rate | OPEN Req? | Type |
|---|
1 Upload the new protocol's funding sheet Word doc to this Claude Project
2 Open Power Query → FundingRules_CC005 query
3 Add rows to the rules table — one row per payable event
4 Rename the query to FundingRules_Master when multi-protocol
5 Refresh All — new protocol payments process automatically
1 Go to console.anthropic.com
2 Settings → Limits → Monthly spend limit
3 Set to $10 — key stops working at $10
4 Create a second API key just for this demo
5 Share the HTML file + that demo key with the recipient
Free · 5-minute setup · Key never leaves your control
1 Go to cloudflare.com → sign up free
2 Workers & Pages → Create Worker
3 Paste the Worker code below → Deploy
4 Add your API key as a secret: ANTHROPIC_API_KEY
5 Update the PROXY_URL in this HTML file
6 Share the HTML — no key needed by recipient
export default {
async fetch(request, env) {
// Allow CORS from any origin (tighten to your domain in production)
const cors = {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'POST, OPTIONS',
'Access-Control-Allow-Headers': 'Content-Type',
};
if (request.method === 'OPTIONS') {
return new Response(null, { headers: cors });
}
if (request.method !== 'POST') {
return new Response('Method not allowed', { status: 405 });
}
// Forward request to Anthropic API
const body = await request.json();
const response = await fetch('https://api.anthropic.com/v1/messages', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': env.ANTHROPIC_API_KEY, // stored as Worker secret
'anthropic-version': '2023-06-01',
},
body: JSON.stringify(body),
});
const data = await response.json();
return new Response(JSON.stringify(data), {
status: response.status,
headers: { ...cors, 'Content-Type': 'application/json' },
});
}
};
After deploying, your Worker URL will look like: https://mandinet-proxy.YOUR-SUBDOMAIN.workers.dev
Replace the API endpoint in this file: find PROXY_URL and paste your Worker URL there.
In the API key field above, paste your Worker URL instead of an API key.
The demo detects whether you entered a URL (starts with https://) or a key (starts with sk-ant-) and routes accordingly.
Recipients open the HTML file, leave the key field blank, and click Run Claude — if a default proxy is configured, it just works.