From 48de9fc7b377dd81bc860be427648cc59ceeeca1 Mon Sep 17 00:00:00 2001 From: Helge Sverre Date: Sun, 9 Aug 2026 17:59:32 +0200 Subject: [PATCH] docs: add ardvark to reference implementations --- docs/ref_implementations.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/docs/ref_implementations.md b/docs/ref_implementations.md index 546813a..1c12c3a 100644 --- a/docs/ref_implementations.md +++ b/docs/ref_implementations.md @@ -106,3 +106,27 @@ curl -sS https://ora.ai/api/ard/attestation/resend.com \ ### MCP Ora is also reachable as an MCP server at `https://ora.ai/api/mcp` (streamable HTTP); its `discover_products`, `get_score`, and `search_capabilities` tools query the same index. + +## ardvark + +[ardvark](https://github.com/HelgeSverre/ardvark) is an MIT-licensed +command-line crawler, validator, and indexer for ARD catalogs. It discovers +catalogs through ARD web discovery mechanisms, validates them with the published +JSON Schema and semantic checks, and stores discovered resources for local +search and export. It also provides JSON output and a local stdio MCP server. + +### Install and verify + +```bash +go install github.com/helgesverre/ardvark/cmd/ardvark@latest +ardvark verify --strict https://ardvark.no/.well-known/ard.json +``` + +### Crawl and search + +```bash +ardvark crawl https://example.com +ardvark search "database agent" --verdict valid +``` + +See [ardvark.no](https://ardvark.no) for complete documentation.