search_facilities

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

Find colocation facilities (data centers) in PeeringDB by name, city, or country (2-letter code). Returns the facility name, location, network count, street address, and website. Provide at least one of query/city/country. Keyless.

Parameters

NameTypeRequiredDescription
querystringnoFacility name (matches names containing this text).
citystringnoCity name.
countrystringno2-letter ISO country code, e.g. US, DE, GB.
limitnumbernoMax results (default 20).

Example call

Arguments

{
  "query": "Equinix"
}

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_facilities","arguments":{"query":"Equinix"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "city": "Amsterdam",
  "country": "NL"
}

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