get_server_info
Retrieve server details like POP location and CDN information for specified URLs without running speed tests. Ideal for analyzing network infrastructure.
Instructions
Get server information for any URL without performing speed tests.
Args:
url_download: URL to download data from
url_upload: URL to upload data to
url_latency: URL to measure latency to
Returns:
Dictionary with servers information including POP location, CDN info, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url_download | No | https://raw.githubusercontent.com/inventer-dev/speed-test-files/main/128KB.bin | |
url_latency | No | https://httpi.dev/get | |
url_upload | No | https://httpi.dev/post |
Input Schema (JSON Schema)
{
"properties": {
"url_download": {
"default": "https://raw.githubusercontent.com/inventer-dev/speed-test-files/main/128KB.bin",
"title": "Url Download",
"type": "string"
},
"url_latency": {
"default": "https://httpi.dev/get",
"title": "Url Latency",
"type": "string"
},
"url_upload": {
"default": "https://httpi.dev/post",
"title": "Url Upload",
"type": "string"
}
},
"title": "get_server_infoArguments",
"type": "object"
}