Sites are starting to advertise their AI agents, MCP servers, and skills in /.well-known/ai-catalog.json. ardvark crawls for those catalogs, verifies them against the ARD spec, and indexes every resource into an SQLite database.
brew install helgesverre/tap/ardvark
macOS · Linux · Windows
$ ardvark seed ct --count 1000 seed ct_log complete: 1000 entries from oak,argon,nimbus log(s) · 847 added · 153 skipped (already queued) $ ardvark crawl hit acme.com well_known catalog valid 14 entries hit tools.example.dev robots_agentmap valid_with_warnings queries.count miss blog.someone.net well_known 404 hit broken.startup.ai well_known invalid urn.format ×3 ... run complete: 41 pages fetched · 847 hosts probed · 3 catalogs found · 2 valid · 1 error
A registry-grade crawler for the ARD ecosystem, in one binary.
/.well-known/ard.json (falling back to /.well-known/ai-catalog.json), Agentmap: directives in robots.txt, <link rel="ard"> tags, and inline application/ld+json catalogs on crawled pages.
Recurses into nested catalogs, fetches the agent cards and MCP server cards entries point at, and harvests discovered registries — referrals included.
Official JSON Schema plus semantic checks: URN grammar, url-xor-data, query counts. Each check stored pass/fail — a report card per catalog.
ardvark seed ct pulls freshly-issued certificates from Certificate Transparency logs — new deployments are where adopters show up first.
SQLite out of the box, MySQL or Postgres with one config key. Raw documents kept verbatim, plus a JSONL event log of every discovery.
Per-host rate limiting, robots.txt compliance, size and redirect caps, exponential backoff. One host having a bad day never sinks a run.
ardvark mcp exposes crawl, search, and read tools over stdio. Agents can query the index without shell commands or direct SQL. Set up MCP.
From zero to an indexed dataset in three commands.
Homebrew, go install, or a release binary.
brew install helgesverre/tap/ardvark
Seed with a URL, a list, or CT-log domains.
ardvark crawl https://example.com
# or probe hosts directly, no spidering:
ardvark probe huggingface.co github.com
Search the index, inspect totals, or export every entry.
ardvark stats ardvark search "database agent" --verdict valid ardvark export --format jsonl --out resources.jsonl