HTTP requests and package registry queries
net_fetch - Fetch URLs with automatic HTML to Markdown conversionnet_cargo - Query crates.io for Rust package infonet_node - Query npm registry for Node.js packagesnet_python - Query PyPI for Python packagesnet_apt - Query APT package informationnet_ping - Check network connectivity with statistics{
"name": "net_fetch",
"arguments": {
"url": "https://example.com",
"convert_to_markdown": true
}
}
Fetches a URL and automatically converts HTML content to Markdown for easier processing.
{
"name": "net_cargo",
"arguments": {
"crate_name": "tokio",
"action": "latest"
}
}
Queries crates.io for information about a Rust package, including the latest version, description, and dependencies.
{
"name": "net_node",
"arguments": {
"package_name": "react",
"action": "info"
}
}
{
"name": "net_ping",
"arguments": {
"host": "google.com",
"count": 4
}
}
{
"name": "net_python",
"arguments": {
"package_name": "requests",
"action": "info"
}
}
{
"name": "net_apt",
"arguments": {
"package_name": "nginx",
"action": "info"
}
}