search_networks

Pack: peeringdb · Endpoint: https://gateway.pipeworx.io/peeringdb/mcp

Look up networks in PeeringDB by name or ASN. Returns peering policy (Open/Selective/Restrictive), traffic level, info type (Content/NSP/ISP/Enterprise), scope, and IPv4/IPv6 prefix counts. Provide a name query or an ASN. Keyless.

Parameters

NameTypeRequiredDescription
querystringnoNetwork name (matches names containing this text).
asnnumbernoAutonomous System Number, e.g. 15169 for Google.
limitnumbernoMax results (default 20, max 100).

Example call

Arguments

{
  "query": "Google"
}

curl

curl -X POST https://gateway.pipeworx.io/peeringdb/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_networks","arguments":{"query":"Google"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search_networks', {
  "query": "Google"
});

More examples

{
  "asn": 15169
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "peeringdb": {
      "url": "https://gateway.pipeworx.io/peeringdb/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026