asylum_decisions

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

Decisions on asylum claims, by year, country of origin (coo) and country of asylum (coa). Each row breaks out dec_recognized, dec_other, dec_rejected, dec_closed and dec_total; response.total aggregates the same fields. coo/coa take UNHCR 3-letter codes (see list_countries).

Parameters

NameTypeRequiredDescription
yearFromintegernoStart year, inclusive.
yearTointegernoEnd year, inclusive.
coostringnoCountry of ORIGIN — UNHCR 3-letter code.
coastringnoCountry of ASYLUM — UNHCR 3-letter code.
limitintegernoRows per page (default 25).
pageintegerno1-based page.

Example call

Arguments

{
  "yearFrom": 2020,
  "yearTo": 2023
}

curl

curl -X POST https://gateway.pipeworx.io/unhcr/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"asylum_decisions","arguments":{"yearFrom":2020,"yearTo":2023}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('asylum_decisions', {
  "yearFrom": 2020,
  "yearTo": 2023
});

More examples

{
  "yearFrom": 2022,
  "yearTo": 2023,
  "coa": "DEU"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026