reliefweb-mcp-server

v0.2.1 pre-1.0

Search ReliefWeb humanitarian reports, disasters, jobs, training, and country profiles via MCP. STDIO or Streamable HTTP.

reliefweb.caseyjhand.com/mcp
claude mcp add --transport http reliefweb-mcp-server https://reliefweb.caseyjhand.com/mcp
codex mcp add reliefweb-mcp-server --url https://reliefweb.caseyjhand.com/mcp
{
  "mcpServers": {
    "reliefweb-mcp-server": {
      "url": "https://reliefweb.caseyjhand.com/mcp"
    }
  }
}
gemini mcp add --transport http reliefweb-mcp-server https://reliefweb.caseyjhand.com/mcp
{
  "mcpServers": {
    "reliefweb-mcp-server": {
      "command": "bunx",
      "args": [
        "mcp-remote",
        "https://reliefweb.caseyjhand.com/mcp"
      ]
    }
  }
}
{
  "mcpServers": {
    "reliefweb-mcp-server": {
      "type": "http",
      "url": "https://reliefweb.caseyjhand.com/mcp"
    }
  }
}
curl -X POST https://reliefweb.caseyjhand.com/mcp \
  -H "Content-Type: application/json" \
  -H "MCP-Protocol-Version: 2026-07-28" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2026-07-28","capabilities":{},"clientInfo":{"name":"curl","version":"1.0.0"}}}'

Tools

11

reliefweb_search_reports

open-world

Search humanitarian reports on ReliefWeb with filtering by country, disaster, format, theme, language, source, and date. Returns paginated summaries — use reliefweb_get_report to fetch full body text. Report body is excluded from results (10–100KB each); call get_report when document content is needed. Every report is reachable by default — reports have no archived class, so include_archived has no effect here. Note: each call counts against the 1,000 calls/day quota.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reliefweb_search_reports",
    "arguments": {}
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "text": {
      "description": "Full-text search query. Matches against title, body, and key metadata fields. Use plain natural language or keywords.",
      "type": "string"
    },
    "country": {
      "description": "ISO 3166-1 alpha-3 country code (e.g., SYR, AFG, UKR). Filters to content tagged with this country.",
      "type": "string"
    },
    "disaster_id": {
      "description": "ReliefWeb numeric disaster ID. Filters to reports linked to a specific disaster. Get the ID from reliefweb_search_disasters.",
      "type": "integer",
      "minimum": -9007199254740991,
      "maximum": 9007199254740991
    },
    "format": {
      "description": "Content format filter. One of: News and Press Release, Situation Report, Map, Infographic, Analysis, Other, Assessment, Manual and Guideline, Appeal, UN Document, Evaluation and Lessons Learned. Case, spacing, and punctuation are ignored; any other value is rejected with the valid list.",
      "type": "string"
    },
    "theme": {
      "description": "Sector or cross-cutting theme (e.g., Health, Food and Nutrition, Shelter and Non-Food Items, Protection). Open-ended — matches theme.name exactly as ReliefWeb spells it.",
      "type": "string"
    },
    "language": {
      "description": "ISO 639-1 language code (e.g., en, fr, es, ar). Filters on language.code.",
      "type": "string"
    },
    "source": {
      "description": "Organization short name (e.g., UNHCR, OCHA, WFP). Filters on source.shortname.",
      "type": "string"
    },
    "date_from": {
      "description": "Earliest publication date. Filters on date.original (source publication date). A bare calendar date such as 2024-01-15 is accepted and resolves to start of that day in UTC; a datetime carrying any offset is resolved to UTC.",
      "anyOf": [
        {
          "type": "string",
          "const": ""
        },
        {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}(?:T\\d{2}:\\d{2}(?::\\d{2}(?:\\.\\d+)?)?(?:Z|[+-]\\d{2}:?\\d{2})?)?$",
          "description": "Calendar date (2024-01-15) or full ISO 8601 datetime (2024-01-15T00:00:00+00:00)."
        }
      ]
    },
    "date_to": {
      "description": "Latest publication date. Pair with date_from for a date range. A bare calendar date resolves to end of that day in UTC, so the range covers it in full; a datetime carrying any offset is resolved to UTC.",
      "anyOf": [
        {
          "type": "string",
          "const": ""
        },
        {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}(?:T\\d{2}:\\d{2}(?::\\d{2}(?:\\.\\d+)?)?(?:Z|[+-]\\d{2}:?\\d{2})?)?$",
          "description": "Calendar date (2024-01-31) or full ISO 8601 datetime (2024-01-31T23:59:59+00:00)."
        }
      ]
    },
    "sort": {
      "description": "Sort order. Use date.original:desc for newest first (default), date.original:asc for oldest first, score:desc for relevance.",
      "type": "string"
    },
    "include_archived": {
      "description": "No effect on reports. Reports have no archived class — every report is already in scope, whatever this is set to. Kept so existing calls that pass it keep working; it is meaningful on reliefweb_search_jobs, reliefweb_search_training, and reliefweb_search_disasters.",
      "type": "boolean"
    },
    "filter": {
      "description": "Raw ReliefWeb filter object for compound conditions not covered by named params. Example: {\"operator\": \"AND\", \"conditions\": [{\"field\": \"format.name\", \"value\": \"Map\"}, {\"field\": \"language.code\", \"value\": \"fr\"}]}.",
      "type": "object",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {}
    },
    "limit": {
      "default": 10,
      "description": "Number of results to return (1–1000, default 10). Use a smaller value for targeted lookups; larger for bulk research. Each call counts against the 1,000-calls/day quota.",
      "type": "integer",
      "minimum": 1,
      "maximum": 1000
    },
    "offset": {
      "default": 0,
      "description": "Zero-based offset for pagination. Use with limit and the totalCount enrichment field to page through large result sets.",
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "limit",
    "offset"
  ],
  "additionalProperties": false
}
view source ↗

reliefweb_get_report

open-world

Fetch a single ReliefWeb report by its numeric ID with full body text, file attachments, and all metadata. Use after reliefweb_search_reports to retrieve document content — body is excluded from search results to manage context budget. Report bodies can be 10–100KB. A record over the response budget comes back as a section outline naming every section and its byte size; re-call with sections to pull only the ones needed. Nothing is truncated on either path.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reliefweb_get_report",
    "arguments": {
      "id": "<id>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991,
      "description": "ReliefWeb numeric report ID. Obtained from reliefweb_search_reports results."
    },
    "sections": {
      "description": "Sections of the report record to return, named by the sections[].name values an outline response lists. Omit for the whole record, or for a section outline when the record is over the response budget. Identity metadata — the record's ID, its name, and its canonical URL — comes back alongside whatever is requested. The call is self-contained — the record is re-fetched and sliced, so no prior call has to be repeated.",
      "type": "array",
      "items": {
        "type": "string",
        "description": "A section name exactly as the outline response spelled it."
      }
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false
}
view source ↗

reliefweb_search_disasters

open-world

Search active and historical disasters on ReliefWeb by type, country, status, date range, and GLIDE number. Default preset covers alert, ongoing, and past disasters. Use include_archived=true to reach alert-archive entries as well, for historical research. Returns IDs suitable for use with reliefweb_get_disaster and as disaster_id filter in reliefweb_search_reports.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reliefweb_search_disasters",
    "arguments": {}
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "text": {
      "description": "Full-text search query. Matches against disaster name and description.",
      "type": "string"
    },
    "country": {
      "description": "ISO 3166-1 alpha-3 country code (e.g., SYR, AFG, UKR). Filters to disasters tagged with this country.",
      "type": "string"
    },
    "disaster_type": {
      "description": "Disaster type name (e.g., Earthquake, Flood, Drought, Cyclone). Filters on type.name.",
      "type": "string"
    },
    "status": {
      "description": "Disaster status filter. One of: alert (newly declared), ongoing, past (resolved), alert-archive. Separate multiple values with commas; case, spacing, and punctuation are ignored, and any other value is rejected with the valid list. alert-archive is only reachable with include_archived=true — asking for it without that returns nothing.",
      "type": "string"
    },
    "glide": {
      "description": "GLIDE number (global disaster identifier, e.g., EQ-2023-000053-TUR). Use for cross-system disaster correlation.",
      "type": "string"
    },
    "date_from": {
      "description": "Earliest disaster creation date. Filters on date.created. A bare calendar date such as 2024-01-15 is accepted and resolves to start of that day in UTC; a datetime carrying any offset is resolved to UTC.",
      "anyOf": [
        {
          "type": "string",
          "const": ""
        },
        {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}(?:T\\d{2}:\\d{2}(?::\\d{2}(?:\\.\\d+)?)?(?:Z|[+-]\\d{2}:?\\d{2})?)?$",
          "description": "Calendar date (2024-01-15) or full ISO 8601 datetime (2024-01-15T00:00:00+00:00)."
        }
      ]
    },
    "date_to": {
      "description": "Latest disaster creation date. Pair with date_from for a date range. A bare calendar date resolves to end of that day in UTC, so the range covers it in full; a datetime carrying any offset is resolved to UTC.",
      "anyOf": [
        {
          "type": "string",
          "const": ""
        },
        {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}(?:T\\d{2}:\\d{2}(?::\\d{2}(?:\\.\\d+)?)?(?:Z|[+-]\\d{2}:?\\d{2})?)?$",
          "description": "Calendar date (2024-01-31) or full ISO 8601 datetime (2024-01-31T23:59:59+00:00)."
        }
      ]
    },
    "sort": {
      "description": "Sort order. Use date.created:desc for newest first (default), date.created:asc for oldest, score:desc for relevance.",
      "type": "string"
    },
    "include_archived": {
      "description": "Include alert-archive disasters in results, alongside alert, ongoing, and past. Uses preset=analysis. Off by default.",
      "type": "boolean"
    },
    "limit": {
      "default": 10,
      "description": "Number of results to return (1–1000, default 10). Each call counts against the 1,000-calls/day quota.",
      "type": "integer",
      "minimum": 1,
      "maximum": 1000
    },
    "offset": {
      "default": 0,
      "description": "Zero-based offset for pagination. Use with limit and the totalCount enrichment field to page through results.",
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "limit",
    "offset"
  ],
  "additionalProperties": false
}
view source ↗

reliefweb_get_disaster

open-world

Fetch a disaster record by ReliefWeb numeric ID including description, affected countries, GLIDE number, profile overview, key content links, and active appeals or response plans. Use after reliefweb_search_disasters to retrieve full details. Each curated list also has an archive, which the record leaves out. Two alternative selectors, at most one per call: sections names parts of the record to return, archive pages one list's archived entries in place of the record. Description and profile overview can together run to tens of KB for major disasters. A record over the response budget comes back as a section outline naming every section and its byte size. Nothing is truncated on any path.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reliefweb_get_disaster",
    "arguments": {
      "id": "<id>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991,
      "description": "ReliefWeb numeric disaster ID. Obtained from reliefweb_search_disasters results."
    },
    "sections": {
      "description": "Sections of the disaster record to return, named by the sections[].name values an outline response lists. Omit for the whole record, or for a section outline when the record is over the response budget. Identity metadata — the record's ID, its name, and its canonical URL — comes back alongside whatever is requested. The call is self-contained — the record is re-fetched and sliced, so no prior call has to be repeated. This names parts of the record itself and never reaches archived entries — use archive for those.",
      "type": "array",
      "items": {
        "type": "string",
        "description": "A section name exactly as the outline response spelled it."
      }
    },
    "archive": {
      "description": "Archive mode: return a page of one curated list's ARCHIVED entries instead of the disaster record. The response carries the record identity, the selected list, and total / shown / offset, plus a next offset while more entries remain. Mutually exclusive with sections — sections slices the record, archive replaces it — and a call supplying both is rejected. A record over the response budget still answers an archive call with the page: a page is bounded by limit and carries none of the record prose, so it never outlines.",
      "type": "object",
      "properties": {
        "list": {
          "type": "string",
          "enum": [
            "keyContent",
            "appealsResponsePlans",
            "usefulLinks"
          ],
          "description": "Which curated list to page. The archived entries of that list are the ones the profile itself leaves out."
        },
        "offset": {
          "default": 0,
          "description": "Zero-based index of the first archived entry to return. Send back the nextOffset from the previous page to continue.",
          "type": "integer",
          "minimum": 0,
          "maximum": 9007199254740991
        },
        "limit": {
          "default": 25,
          "description": "Maximum archived entries in one page (1-100).",
          "type": "integer",
          "minimum": 1,
          "maximum": 100
        }
      },
      "required": [
        "list",
        "offset",
        "limit"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false
}
view source ↗

reliefweb_get_country

open-world

Fetch a country profile from ReliefWeb by ISO3 code, including overview, humanitarian situation summary, key content links, active appeals and response plans, and useful external links. Country profiles are curated by OCHA editors and provide the authoritative situation summary for humanitarian responders. Each curated list also has an archive — thousands of entries deep for a long-running crisis — which the profile leaves out. Two alternative selectors, at most one per call: sections names parts of the profile to return, archive pages one list's archived entries in place of the profile. A profile over the response budget comes back as a section outline naming every section and its byte size. Nothing is truncated on any path.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reliefweb_get_country",
    "arguments": {
      "iso3": "<iso3>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "iso3": {
      "type": "string",
      "minLength": 3,
      "maxLength": 3,
      "description": "ISO 3166-1 alpha-3 country code (e.g., SYR, AFG, UKR). Used to look up the country's ReliefWeb profile."
    },
    "sections": {
      "description": "Sections of the country record to return, named by the sections[].name values an outline response lists. Omit for the whole record, or for a section outline when the record is over the response budget. Identity metadata — the record's ID, its name, and its canonical URL — comes back alongside whatever is requested. The call is self-contained — the record is re-fetched and sliced, so no prior call has to be repeated. This names parts of the profile itself and never reaches archived entries — use archive for those.",
      "type": "array",
      "items": {
        "type": "string",
        "description": "A section name exactly as the outline response spelled it."
      }
    },
    "archive": {
      "description": "Archive mode: return a page of one curated list's ARCHIVED entries instead of the country record. The response carries the record identity, the selected list, and total / shown / offset, plus a next offset while more entries remain. Mutually exclusive with sections — sections slices the record, archive replaces it — and a call supplying both is rejected. A record over the response budget still answers an archive call with the page: a page is bounded by limit and carries none of the record prose, so it never outlines.",
      "type": "object",
      "properties": {
        "list": {
          "type": "string",
          "enum": [
            "keyContent",
            "appealsResponsePlans",
            "usefulLinks"
          ],
          "description": "Which curated list to page. The archived entries of that list are the ones the profile itself leaves out."
        },
        "offset": {
          "default": 0,
          "description": "Zero-based index of the first archived entry to return. Send back the nextOffset from the previous page to continue.",
          "type": "integer",
          "minimum": 0,
          "maximum": 9007199254740991
        },
        "limit": {
          "default": 25,
          "description": "Maximum archived entries in one page (1-100).",
          "type": "integer",
          "minimum": 1,
          "maximum": 100
        }
      },
      "required": [
        "list",
        "offset",
        "limit"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "iso3"
  ],
  "additionalProperties": false
}
view source ↗

reliefweb_list_countries

open-world

List all countries and territories tracked by ReliefWeb, optionally filtered to active humanitarian situations. Returns ISO3 codes and status for each entry — use the ISO3 code with reliefweb_get_country to fetch a full profile. Set crisis_only=true to limit results to countries with active humanitarian situations.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reliefweb_list_countries",
    "arguments": {}
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "crisis_only": {
      "description": "When true, filters to countries with an active humanitarian situation (status ongoing). Default false returns all countries.",
      "type": "boolean"
    },
    "limit": {
      "default": 100,
      "description": "Number of results to return (1–1000, default 100). Each call counts against the 1,000-calls/day quota.",
      "type": "integer",
      "minimum": 1,
      "maximum": 1000
    },
    "offset": {
      "default": 0,
      "description": "Zero-based offset for pagination. Use with limit and the totalCount enrichment field to page through results.",
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "limit",
    "offset"
  ],
  "additionalProperties": false
}
view source ↗

reliefweb_search_jobs

open-world

Search humanitarian job listings on ReliefWeb by country, organization, career category, theme, and experience level. Returns current open positions — expired postings are excluded by default. Use include_archived=true to search the full history of postings, which is far larger than the open set. Use text search for role titles and job descriptions.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reliefweb_search_jobs",
    "arguments": {}
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "text": {
      "description": "Full-text search query. Matches against job title, body, and key metadata fields.",
      "type": "string"
    },
    "country": {
      "description": "ISO 3166-1 alpha-3 country code (e.g., SYR, AFG, UKR). Filters to jobs tagged with this country.",
      "type": "string"
    },
    "source": {
      "description": "Organization short name (e.g., UNHCR, OCHA, WFP). Filters on source.shortname.",
      "type": "string"
    },
    "career_category": {
      "description": "Humanitarian career track (e.g., Programme and Project Management, Information and Communications Technology, Logistics and Telecommunications). Filters on career_categories.name.",
      "type": "string"
    },
    "theme": {
      "description": "Sector or cross-cutting theme (e.g., Health, Food and Nutrition, Protection). Filters on theme.name.",
      "type": "string"
    },
    "experience": {
      "description": "Experience level (e.g., 0-2 years, 3-4 years, 5-9 years). Filters on experience.name.",
      "type": "string"
    },
    "sort": {
      "description": "Sort order. Use date.created:desc for newest postings first (default), date.closing:asc to surface roles closing soonest, or score:desc for relevance.",
      "type": "string"
    },
    "include_archived": {
      "description": "Search expired postings alongside the open ones. Uses preset=analysis. Off by default — the open set is a small fraction of the archive, so turn this on for labour-market history rather than for a hiring snapshot.",
      "type": "boolean"
    },
    "limit": {
      "default": 10,
      "description": "Number of results to return (1–1000, default 10). Each call counts against the 1,000-calls/day quota.",
      "type": "integer",
      "minimum": 1,
      "maximum": 1000
    },
    "offset": {
      "default": 0,
      "description": "Zero-based offset for pagination. Use with limit and the totalCount enrichment field to page through results.",
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "limit",
    "offset"
  ],
  "additionalProperties": false
}
view source ↗

reliefweb_get_job

open-world

Fetch a job posting by ReliefWeb numeric ID with the full vacancy description, application instructions, dates, hiring organization, and location and taxonomy metadata. Use after reliefweb_search_jobs, which returns summaries without the description or application instructions. Reaches expired postings as well as open ones. A record over the response budget comes back as a section outline naming every section and its byte size; re-call with sections to pull only the ones needed. Nothing is truncated on either path.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reliefweb_get_job",
    "arguments": {
      "id": "<id>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991,
      "description": "ReliefWeb numeric job ID. Obtained from reliefweb_search_jobs results."
    },
    "sections": {
      "description": "Sections of the job record to return, named by the sections[].name values an outline response lists. Omit for the whole record, or for a section outline when the record is over the response budget. Identity metadata — the record's ID, its name, and its canonical URL — comes back alongside whatever is requested. The call is self-contained — the record is re-fetched and sliced, so no prior call has to be repeated.",
      "type": "array",
      "items": {
        "type": "string",
        "description": "A section name exactly as the outline response spelled it."
      }
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false
}
view source ↗

reliefweb_search_training

open-world

Search humanitarian training and learning opportunities on ReliefWeb by country, format, date, source, career category, and language. Covers on-site and online capacity-building events. Training date fields use date.start / date.end — different from report date fields. Use date_start_from and date_start_to to find upcoming training within a window. Results default to soonest-starting first (date.start:asc). With neither date bound supplied the search is scoped to training starting from now, so the first page is upcoming opportunities; supply either bound to search an explicit range, including a historical one. Use include_archived=true to search concluded listings as well, which are far more numerous than the current ones.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reliefweb_search_training",
    "arguments": {}
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "text": {
      "description": "Full-text search query. Matches against training title and description.",
      "type": "string"
    },
    "country": {
      "description": "ISO 3166-1 alpha-3 country code (e.g., KEN, ETH, COD). Filters to training tagged with this country.",
      "type": "string"
    },
    "source": {
      "description": "Organization short name. Filters on source.shortname.",
      "type": "string"
    },
    "format": {
      "description": "Training format. Valid values: on-site, online. Filters on format.name.",
      "type": "string",
      "enum": [
        "on-site",
        "online"
      ]
    },
    "career_category": {
      "description": "Humanitarian career track (e.g., Programme and Project Management, Information and Communications Technology). Filters on career_categories.name.",
      "type": "string"
    },
    "language": {
      "description": "ISO 639-1 language code (e.g., en, fr, es). Filters on language.code.",
      "type": "string"
    },
    "date_start_from": {
      "description": "Training start date lower bound. Filters on date.start — use to find training starting after a given date. A bare calendar date resolves to start of that day in UTC, and a datetime carrying any offset is resolved to UTC. Omit this and date_start_to together to default the search to training starting from now, unless include_archived is set, which leaves the range open.",
      "anyOf": [
        {
          "type": "string",
          "const": ""
        },
        {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}(?:T\\d{2}:\\d{2}(?::\\d{2}(?:\\.\\d+)?)?(?:Z|[+-]\\d{2}:?\\d{2})?)?$",
          "description": "Calendar date (2024-06-01) or full ISO 8601 datetime (2024-06-01T00:00:00+00:00)."
        }
      ]
    },
    "date_start_to": {
      "description": "Training start date upper bound. Filters on date.start — pair with date_start_from for a window. A bare calendar date resolves to end of that day in UTC, and a datetime carrying any offset is resolved to UTC. Supplying this alone searches everything up to it, with no lower bound injected.",
      "anyOf": [
        {
          "type": "string",
          "const": ""
        },
        {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}(?:T\\d{2}:\\d{2}(?::\\d{2}(?:\\.\\d+)?)?(?:Z|[+-]\\d{2}:?\\d{2})?)?$",
          "description": "Calendar date (2024-12-31) or full ISO 8601 datetime (2024-12-31T23:59:59+00:00)."
        }
      ]
    },
    "sort": {
      "description": "Sort order. Use date.start:asc for soonest-starting training first (default), date.start:desc for latest-starting, date.created:desc for most recently posted, or score:desc for relevance.",
      "type": "string"
    },
    "include_archived": {
      "description": "Search concluded listings alongside the current ones. Uses preset=analysis. Off by default. Setting this also drops the start-from-now default bound, so an otherwise unbounded search reaches back through the whole record; pair it with date_start_from and date_start_to to study a specific period.",
      "type": "boolean"
    },
    "limit": {
      "default": 10,
      "description": "Number of results to return (1–1000, default 10). Each call counts against the 1,000-calls/day quota.",
      "type": "integer",
      "minimum": 1,
      "maximum": 1000
    },
    "offset": {
      "default": 0,
      "description": "Zero-based offset for pagination. Use with limit and the totalCount enrichment field to page through results.",
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "limit",
    "offset"
  ],
  "additionalProperties": false
}
view source ↗

reliefweb_get_training

open-world

Fetch a training listing by ReliefWeb numeric ID with the full description, registration instructions, event link, cost and fee information, dates, languages, and organizing source. Use after reliefweb_search_training, which returns summaries without the description, registration instructions, or cost detail. Reaches concluded listings as well as current ones. A record over the response budget comes back as a section outline naming every section and its byte size; re-call with sections to pull only the ones needed. Nothing is truncated on either path.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reliefweb_get_training",
    "arguments": {
      "id": "<id>"
    }
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991,
      "description": "ReliefWeb numeric training ID. Obtained from reliefweb_search_training results."
    },
    "sections": {
      "description": "Sections of the training record to return, named by the sections[].name values an outline response lists. Omit for the whole record, or for a section outline when the record is over the response budget. Identity metadata — the record's ID, its name, and its canonical URL — comes back alongside whatever is requested. The call is self-contained — the record is re-fetched and sliced, so no prior call has to be repeated.",
      "type": "array",
      "items": {
        "type": "string",
        "description": "A section name exactly as the outline response spelled it."
      }
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false
}
view source ↗

reliefweb_list_sources

open-world

Browse source organizations that contribute content to ReliefWeb, optionally filtered by name text or organization type. Returns short names, types, and URLs. Use the shortname value with the source filter in reliefweb_search_reports, reliefweb_search_jobs, and reliefweb_search_training.

read
invocation
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "reliefweb_list_sources",
    "arguments": {}
  }
}
schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "text": {
      "description": "Full-text search query. Matches against organization name and short name.",
      "type": "string"
    },
    "type": {
      "description": "Organization type. One of: Non-governmental Organization, International Organization, Academic and Research Institution, Other, Government, Media, Red Cross/Red Crescent Movement. Filters on type.name.",
      "type": "string",
      "enum": [
        "Non-governmental Organization",
        "International Organization",
        "Academic and Research Institution",
        "Other",
        "Government",
        "Media",
        "Red Cross/Red Crescent Movement"
      ]
    },
    "limit": {
      "default": 10,
      "description": "Number of results to return (1–1000, default 10). Each call counts against the 1,000-calls/day quota.",
      "type": "integer",
      "minimum": 1,
      "maximum": 1000
    },
    "offset": {
      "default": 0,
      "description": "Zero-based offset for pagination. Use with limit and the totalCount enrichment field to page through results.",
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "limit",
    "offset"
  ],
  "additionalProperties": false
}
view source ↗

Resources

3

Full report record by ReliefWeb numeric ID — metadata, body text, and file URLs. Always returns the whole record, however large: a resource read has no way to name sections, so reliefweb_get_report is the path for an oversized report — it answers with a section outline and takes a sections selector.

uri reliefweb://reports/{id} mime application/json

Disaster record by ReliefWeb numeric ID — type, status, affected countries, GLIDE number, description, and curated content links. Always returns the whole record, however large: a resource read has no way to name sections, so reliefweb_get_disaster is the path for an oversized disaster — it answers with a section outline and takes a sections selector.

uri reliefweb://disasters/{id} mime application/json

Country profile by ISO3 code — overview, humanitarian situation summary, key content links, and active response plans. Equivalent to calling reliefweb_get_country.

uri reliefweb://countries/{iso3} mime application/json

Prompts

1

Generate a structured humanitarian briefing for a country or disaster. Instructs the agent to use available ReliefWeb tools to gather recent reports, active disasters, open positions, and training opportunities, then synthesize a concise situation overview. Specify focus=situation for a situation-only brief, focus=jobs for open positions, or focus=full for the complete briefing.

  • country_or_disasterrequired — Country name or ISO3 code (e.g., "Afghanistan" or "AFG"), or a disaster name/GLIDE number (e.g., "Syria earthquake" or "EQ-2023-000053-TUR").
  • focus — Briefing scope. situation = situation overview and recent reports only. jobs = open positions and training only. full = complete briefing including situation, reports, disasters, jobs, and training (default).