asylum_applications

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

Asylum applications lodged, by year, country of origin (coo) and country of asylum (coa). Rows carry procedure_type, app_type, dec_level and the applied count; response.total.applied is the aggregate. 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": 2021,
  "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_applications","arguments":{"yearFrom":2021,"yearTo":2023}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "yearFrom": 2022,
  "yearTo": 2023,
  "coo": "AFG",
  "coa": "PAK"
}

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