Install
openclaw skills install @agentpmt/global-poverty-inequality-dataGlobal Poverty & Inequality Data: Query World Bank poverty and inequality data by country or region name. Returns poverty headcount at $2.15/$3.65/$6.85 thresholds, Gini index, income shares by quintile/decile, and extreme poverty metrics. Use when an agent needs global poverty & inequality data, global poverty inequality data, development analysis, poverty research, inequality studies, sdg monitoring, query poverty data, country or region through AgentPMT-hosted remote tool calls.
openclaw skills install @agentpmt/global-poverty-inequality-dataLast updated: 2026-06-24.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
Explore how poverty and wealth are distributed across 200+ countries using data from the World Bank. Find out what share of a nation's population lives below the international poverty line, how income is split between the richest and poorest households, and whether conditions are improving or getting worse over time. Compare any country against its region or the world, track progress toward ending extreme poverty, and uncover the story behind the numbers with built-in trend analysis and contextual insights.
Access poverty rates, Gini coefficients, income distribution, and inequality metrics for 200+ countries from World Bank data. Query by country name in plain language with optional trend analysis and regional comparisons.
Fetch poverty and inequality data for a country or region from the World Bank World Development Indicators database.
Required fields:
action — "query_poverty_data"country_or_region (string) — Country or region name in plain English. Supports 200+ countries (e.g., "India", "Kenya", "Brazil"), regional aggregations (e.g., "Sub-Saharan Africa", "South Asia", "Latin America and Caribbean", "East Asia and Pacific", "Middle East"), income groups (e.g., "Low Income", "Upper Middle Income", "High Income", "OECD"), and global ("World" or "Global"). Common abbreviations like "USA", "UK", "UAE" are accepted. Names longer than 100 characters are rejected.Optional fields:
metric_type (string) — Type of metric to query. Default: "all".
"poverty_headcount" — Poverty rates at $2.15, $3.65, and $6.85/day thresholds (2017 PPP)"extreme_poverty" — $2.15/day poverty line plus poverty gap analysis"gini_index" — Gini coefficient (0 = perfect equality, 100 = perfect inequality)"gini" — Alias for gini_index"inequality" — Gini coefficient plus income share held by lowest 20% and highest 20%"income_distribution" — Income shares by lowest 10%, lowest 20%, highest 20%, and highest 10%"all" — All available metrics including multidimensional poverty headcounttime_period (string) — Time period for data retrieval. Default: "latest".
"latest" — Most recent complete year"last_5_years" — Data from past 5 years"last_10_years" — Data from past 10 years"YYYY:YYYY" — Specific year range (e.g., "2015:2020", "2010:2022"). A dash-separated range like "2015-2020" is also accepted and converted automatically.include_regional_comparison (boolean) — Include regional and global averages (World, Sub-Saharan Africa, South Asia, Latin America & Caribbean, East Asia & Pacific, Middle East & North Africa) for context. Default: true. Only the first 3 indicators are compared per region.include_trends (boolean) — Include trend analysis showing direction (improving/worsening/stable), absolute and percent change, and data point count when historical data is available. Default: true. For poverty and inequality indicators, a decrease is classified as "improving."Example — Latest poverty data for a country:
{
"action": "query_poverty_data",
"country_or_region": "India",
"metric_type": "all",
"time_period": "latest"
}
Example — Inequality trends over a decade:
{
"action": "query_poverty_data",
"country_or_region": "Brazil",
"metric_type": "inequality",
"time_period": "2010:2022",
"include_trends": true
}
Example — Regional poverty overview:
{
"action": "query_poverty_data",
"country_or_region": "Sub-Saharan Africa",
"metric_type": "poverty_headcount",
"time_period": "latest",
"include_regional_comparison": true
}
Example — Gini coefficient lookup:
{
"action": "query_poverty_data",
"country_or_region": "South Africa",
"metric_type": "gini_index",
"time_period": "latest"
}
Example — Extreme poverty with no comparisons:
{
"action": "query_poverty_data",
"country_or_region": "Nigeria",
"metric_type": "extreme_poverty",
"time_period": "last_5_years",
"include_regional_comparison": false,
"include_trends": true
}
Responses include:
If a country name is not recognized, the response returns an error with a hint to use full English country names.
| Metric Type | Indicators Included |
|---|---|
| poverty_headcount | Poverty at $2.15/day, $3.65/day, $6.85/day |
| extreme_poverty | Poverty at $2.15/day, Poverty gap at $2.15/day |
| gini_index / gini | Gini coefficient |
| inequality | Gini coefficient, Income share lowest 20%, Income share highest 20% |
| income_distribution | Income share lowest 10%, lowest 20%, highest 20%, highest 10% |
| all | All of the above plus Multidimensional poverty headcount |
metric_type: "all" and time_period: "latest" to get a complete snapshot of a country's poverty and inequality status.time_period: "2010:2022" with include_trends: true to see whether poverty is improving or worsening.include_regional_comparison: true to see how a country compares to its region and the world.true/false), not strings.metric_type is provided, the tool defaults to returning all metrics.Global Poverty & Inequality Data on AgentPMT.query_poverty_data.No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 1.
x402 availability: not enabled for this product.
query_poverty_data (action slug: query-poverty-data): Fetch poverty and inequality data for a country or region from the World Bank World Development Indicators database. Price: 5 credits. Parameters: country_or_region, include_regional_comparison, include_trends, metric_type, time_period.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "global-poverty-inequality-data".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "global-poverty-inequality-data", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "global-poverty-inequality-data"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "global-poverty-inequality-data"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "global-poverty-inequality-data"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "global-poverty-inequality-data"
}
}
Product slug: global-poverty-inequality-data
Marketplace page: https://www.agentpmt.com/marketplace/global-poverty-inequality-data
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupskills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "Global-Poverty--Inequality-Data",
"arguments": {
"action": "query_poverty_data",
"country_or_region": "example country or region",
"include_regional_comparison": true,
"include_trends": true,
"metric_type": "all",
"time_period": "latest"
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "global-poverty-inequality-data",
"parameters": {
"action": "query_poverty_data",
"country_or_region": "example country or region",
"include_regional_comparison": true,
"include_trends": true,
"metric_type": "all",
"time_period": "latest"
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.query_poverty_data fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)