Conversation
…pdate HTTP/DNS/AI to use direct API - Add list_tlds and get_tld_details tools for TLD information - Add get_domains_ranking_timeseries to track domain rankings over time - Add get_speed_histogram for speed test distribution data - Update get_http_data to use fetchRadarApi with new unified dimensions (adm1, bot_class, browser, browser_family, device_type, http_protocol, http_version, ip_version, os, post_quantum, tls_version) - Update get_dns_queries_data to use fetchRadarApi with new dimensions (dnssec_e2e, tld, tld_dns_magnitude) - Update get_ai_data to use fetchRadarApi with new dimensions (crawl_purpose, industry, vertical) - Add radar.cloudflare.com link to README - Update README with new tools and prompt examples
…n names) - Change timeseriesGroups to timeseries_groups in HTTP, DNS, CT dimensions - Change camelCase dimension names to snake_case (e.g., caOwner -> ca_owner) - Simplify HTTP and CT tools to pass dimension directly to API path - API is case-insensitive so snake_case works correctly
|
lgtm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds new tools, updates existing tools to use the direct API instead of SDK (for better dimension support), and adds missing dimensions to HTTP, DNS, and AI tools.
New Tools (4)
list_tlds- List top-level domains (TLDs) including generic, country-code, and sponsored TLDsget_tld_details- Get detailed information about a specific TLDget_domains_ranking_timeseries- Track domain rankings over timeget_speed_histogram- Get speed test histogram data for bandwidth, latency, or jitter distributionUpdated Tools (3) - Switched from SDK to Direct API
These tools now use
fetchRadarApiinstead of the SDK to support all available dimensions:get_http_data- Now supports new unified endpoint dimensions:summary/adm1,summary/bot_class,summary/browser,summary/browser_family,summary/device_type,summary/http_protocol,summary/http_version,summary/ip_version,summary/os,summary/post_quantum,summary/tls_versiontimeseriesGroups/adm1,timeseriesGroups/bot_class,timeseriesGroups/browser,timeseriesGroups/browser_family,timeseriesGroups/device_type,timeseriesGroups/http_protocol,timeseriesGroups/http_version,timeseriesGroups/ip_version,timeseriesGroups/os,timeseriesGroups/post_quantum,timeseriesGroups/tls_versionget_dns_queries_data- Now supports additional dimensions:summary/dnssec_e2e,summary/tld,summary/tld_dns_magnitudetimeseriesGroups/dnssec,timeseriesGroups/dnssec_e2e,timeseriesGroups/tldget_ai_data- Now supports additional dimensions:bots/timeseriesbots/summary/crawl_purpose,bots/summary/industry,bots/summary/verticalbots/timeseries_groups/crawl_purpose,bots/timeseries_groups/industry,bots/timeseries_groups/vertical