ooni_blocking_trend

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

Daily time series of OONI censorship measurements for a website in a country — shows when blocking started, stopped, or intensified (e.g. Twitter in Iran day by day). Returns per-day OK / anomaly / confirmed-blocked counts.

Parameters

NameTypeRequiredDescription
domainstringyesWebsite domain, e.g. “twitter.com”.
countrystringyes2-letter country code, e.g. “IR”.
daysnumber,stringnoLookback window in days (default 30, max 365).

Example call

Arguments

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

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_blocking_trend","arguments":{"domain":"twitter.com","country":"IR"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "domain": "facebook.com",
  "country": "RU",
  "days": 180
}

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