reliefweb_report
Pack: reliefweb · Endpoint: https://gateway.pipeworx.io/reliefweb/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/reliefweb_report for the schema, then POST the same URL with its arguments for the data.
One ReliefWeb report in full — the complete body text, every attached file, the publishing organisations, the countries and disasters it covers, its theme and format, and its publication and revision dates. Use it after reliefweb_reports to read a situation report rather than only its title. Pass the numeric report id from a reliefweb_reports result. Requires a caller-supplied ReliefWeb appname in _apiKey.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
report_id | string | yes | Numeric ReliefWeb report id, as returned by reliefweb_reports, e.g. “4142589”. |
max_body_chars | number | no | Truncate the body to this many characters (default 8000, max 40000). |
Example call
Arguments
{
"_apiKey": "your-reliefweb-appname",
"report_id": "4142589"
}
curl
curl -X POST https://gateway.pipeworx.io/reliefweb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"reliefweb_report","arguments":{"_apiKey":"your-reliefweb-appname","report_id":"4142589"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('reliefweb_report', {
"_apiKey": "your-reliefweb-appname",
"report_id": "4142589"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"reliefweb": {
"url": "https://gateway.pipeworx.io/reliefweb/mcp"
}
}
}
See Getting Started for client-specific install steps.