streamable-httpMITupdated 1mo ago
Reference webhook receivers for AI Act Radar. Each subdirectory is a self-contained, runnable example for one platform.
What can you do with AI Act Radar?
aiactradar-examples
Reference webhook receivers for AI Act Radar. Each subdirectory is a self-contained, runnable example for one platform.
What every receiver does
- Reads the raw request body (signature is over the bytes, not the parsed JSON).
- Verifies
X-AIAR-Timestampis within 300 seconds of now. - Verifies
X-AIAR-Signature(v1=<hex>) using HMAC-SHA-256 over<timestamp>.<raw_body>in constant time. - Checks an idempotency key (
event.id) before doing real work — retries are normal. - Returns 2xx within 5 seconds; otherwise the dispatcher retries with exponential backoff.
The verification is identical across platforms; only the platform glue differs.
Examples
| Folder | Platform | Notes |
|---|---|---|
cloudflare-workers/ |
Cloudflare Workers | Web Crypto API, KV for idempotency |
vercel-edge/ |
Vercel Edge Functions | Web Crypto API, Vercel KV for idempotency |
aws-lambda/ |
AWS Lambda + API Gateway | Node crypto module, DynamoDB for idempotency |
express-node/ |
Plain Express on Node | Node crypto, in-process LRU (replace for prod) |
fastify-typescript/ |
Fastify + TS | Typed body parser, raw-body capture |
deno-deploy/ |
Deno Deploy | Deno KV for idempotency |
Try it without signing up
Each example has a test.sh that signs a sample event with a local secret and posts it to the running receiver. You can run the full loop on your laptop in under five minutes:
cd cloudflare-workers
cp .dev.vars.example .dev.vars # set AIA_SECRET to anything
npm install && npm run dev # starts http://localhost:8787
# in another terminal:
bash test.sh # posts a signed sample event
Going to production
- Store
AIA_SECRETin your platform's secret manager. Never commit it. - Rotate the secret in the AI Act Radar dashboard at least every 90 days.
- Subscribe to the dispatcher's webhook health channel — bounced deliveries surface there before customers notice.
- Idempotency stores need a TTL of at least 7 days; the dispatcher retries up to 24h.
License
MIT.
AI Act Radar is operated by ligea GmbH, Karlsruhe. Information only — not legal advice.
Install
Add AI Act Radar to your client. Pick the one you use.
claude mcp add --transport http ai-act-radar https://mcp.aiactradar.com/mcp/v1codex mcp add ai-act-radar --url https://mcp.aiactradar.com/mcp/v1{
"mcpServers": {
"ai-act-radar": {
"url": "https://mcp.aiactradar.com/mcp/v1"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"ai-act-radar": {
"type": "http",
"url": "https://mcp.aiactradar.com/mcp/v1"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"ai-act-radar": {
"url": "https://mcp.aiactradar.com/mcp/v1"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ai-act-radar": {
"serverUrl": "https://mcp.aiactradar.com/mcp/v1"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation13/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 28 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.0Latest | Aug 4, 2026 |