ooni_measurements

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

List recent raw OONI measurements for a domain and/or country — individual probe results with timestamp, network (ASN), anomaly/confirmed flags, and a link to the full measurement on OONI Explorer. Use after ooni_site_reachability to inspect specific blocking evidence.

Parameters

NameTypeRequiredDescription
domainstringnoWebsite domain, e.g. “twitter.com”.
countrystringno2-letter country code filter, e.g. “IR”.
confirmed_onlybooleannoOnly measurements with confirmed blocking fingerprints.
limitnumber,stringnoMax results (1-50, default 10).

Example call

Arguments

{
  "domain": "twitter.com",
  "country": "IR",
  "limit": 20
}

curl

curl -X POST https://gateway.pipeworx.io/ooni/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ooni_measurements","arguments":{"domain":"twitter.com","country":"IR","limit":20}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ooni_measurements', {
  "domain": "twitter.com",
  "country": "IR",
  "limit": 20
});

More examples

{
  "domain": "bbc.com",
  "country": "CN",
  "confirmed_only": true
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026