{
  "name": "PetTravelCheck",
  "description": "Free structured database of international pet travel requirements for 35+ countries. Covers dogs, cats, and ferrets. Verified every 90 days against official government sources.",
  "url": "https://pettravelcheck.com",
  "version": "1.0",
  "license": "CC-BY-4.0",
  "contact": "hello@pettravelcheck.com",
  "agent_optimized": true,
  "capabilities": [
    {
      "name": "lookup_country_requirements",
      "description": "Get full pet import requirements for a specific destination country",
      "endpoint": "/country/{slug}.json",
      "method": "GET",
      "parameters": {
        "slug": "Lowercase country name with hyphens (e.g. 'united-kingdom')"
      },
      "returns": "CountryRules object"
    },
    {
      "name": "list_all_countries",
      "description": "Get all supported countries with summary metadata",
      "endpoint": "/countries.json",
      "method": "GET",
      "returns": "Array of CountrySummary objects"
    }
  ],
  "data_formats": ["application/json", "text/markdown", "text/html"],
  "content_types": {
    "country_page_html": "/country/{slug}",
    "country_page_markdown": "/country/{slug}.md",
    "country_data_json": "/country/{slug}.json"
  },
  "update_frequency_days": 90,
  "supported_pets": ["dog", "cat", "ferret"],
  "source_citation_required": true,
  "documentation": "https://pettravelcheck.com/agents.md"
}
