Reference implementation of the MDF (Markdown First) spec.
A self-hostable server that serves markdown natively to AI agents via HTTP content negotiation, with structured discovery, payment-gated content tiers, and bearer token auth. Built with Bun, configured via a single YAML file. The container runs as root only long enough for the Tailscale-in-container hook; the application itself runs as an unprivileged user (su-exec drops from root to bun:bun).
Live demo: https://mdf-demo.bitcryptic.com
Spec: https://github.com/bitcryptic-gw/mdf
Status: v0.1.5 — L402 (Lightning) payment verification is live and settles real invoices; x402 (EVM) payment verification remains stubbed; see open milestones
# Clone
git clone https://github.com/bitcryptic-gw/mdf-reference-server.git
cd mdf-reference-server
# Create the secrets directory and wallet address file
mkdir -p secrets
echo -n 0xYourWalletAddress > secrets/wallet_address
chmod 600 secrets/wallet_address
# Build and run
docker compose up --buildThe server listens on port 3030 (host) → 3000 (container). The dashboard is on port 9090, no external mapping — access via Tailscale or internal network.
# Discover the site's MDF capabilities
curl https://mdf-demo.bitcryptic.com/mdf.json
# Fetch the agent index
curl https://mdf-demo.bitcryptic.com/llms.txt
# Request markdown directly (agent-style)
curl -H "Accept: text/markdown" https://mdf-demo.bitcryptic.com/
# Free content — no payment required
curl -H "Accept: text/markdown" https://mdf-demo.bitcryptic.com/docs/getting-started
# Paid content — returns 402 with payment instructions
curl -H "Accept: text/markdown" https://mdf-demo.bitcryptic.com/premium/deep-dive
# Micropayment tier over Lightning — returns 402 with an L402 invoice
curl -H "Accept: text/markdown" https://mdf-demo.bitcryptic.com/micropayment/intro
# Private content — returns 402 with auth endpoint hint
curl https://mdf-demo.bitcryptic.com/private/internals
# Atom feed with mdf:change_type metadata
curl https://mdf-demo.bitcryptic.com/feed.xmlAll server configuration lives in mdf.yaml. Secrets are resolved at startup in precedence order — from /run/secrets/<name> files, then MDF_* environment variables, then any value in mdf.yaml. In the provided Compose setup the wallet address is mounted as /run/secrets/wallet_address (a file, never an env var); the Alby and Lightning-token secrets are mounted the same way. A non-zero price with no resolvable wallet, or a configured Lightning block with no token secrets, aborts startup with a descriptive error.
site:
url: https://your-domain.com
name: Your Site Name
contact: admin@your-domain.com
pricing:
default:
amount: "0.0001"
currency: USDC
chain: base
sections:
/docs/**:
amount: "0.0000"
/premium/**:
amount: "1.0000"
currency: USDC
chain: base
/private/**:
amount: "100.00"
currency: USDC
chain: baseSee mdf.yaml in this repo for the full reference configuration.
Place markdown files under content/. The directory structure maps directly to URL paths. Frontmatter is supported. The server auto-generates /mdf.json and /llms.txt from mdf.yaml and the content directory at startup — no manual maintenance required.
Two rails are implemented:
L402 (Bitcoin/Lightning) — production-complete. Creates real Lightning invoices via Alby Hub, issues HMAC-bound macaroons, and verifies preimage submission against settled invoice records.
x402 (EVM/stablecoin) — structural stub. Receipt shape is validated but on-chain settlement is not yet verified. See the open issue for the x402 trust model discussion.
Sites advertise accepted rails via payment.accepted_chains in /mdf.json.
A Caddy snippet is included at caddy/Caddyfile. Point your reverse proxy at port 3030. The server exposes /health (200 when the content and data directories are accessible, 503 otherwise) for load-balancer health checks; since 0.1.5 the image's own Docker HEALTHCHECK probes it.
| Feature | State |
|---|---|
HTTP content negotiation (Accept: text/markdown) |
✅ Complete |
/mdf.json + /llms.txt auto-generation |
✅ Complete |
ETag / Last-Modified caching headers |
✅ Complete |
Atom feed with mdf:change_type extension |
✅ Complete |
| WebSub hub declaration | ✅ Complete |
| Bearer token issuance (auth-via-payment) | ✅ Complete |
| Dashboard | ✅ Complete |
| L402 payment verification (Bitcoin/Lightning) | ✅ Complete |
| Validator CLI | ✅ Complete |
| x402 on-chain receipt verification | 🔲 Next milestone |
bun install
bun run src/index.tsRun the smoke walk-through:
bash smoke-test.shsmoke-test.sh is a manual smoke walk-through, not an assertion suite with a pass/fail result. It starts the server on :3000 (dashboard on :3001) and prints the response for each step: discovery (/mdf.json, /llms.txt), markdown/HTML negotiation on /, response headers on a free content page, the priced and auth flows (402 without payment, a stub x402 payment via X-Payment, bearer-token issuance through POST /mdf/auth and its use on /private/internals), a conditional 304 GET, the dashboard /health, and a 404. There is no count and no expected output to compare against — read its output to judge whether each step behaved. The real regression checks are the unit suites in package.json (test:402) and src/content/handler.test.ts, which report their own pass/fail counts.
Gary Walker / BitCryptic™
Graham Hall / Slepner
MIT
