skills/global-poverty-inequality-data/SKILL.md
Global 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.
npx skillsauth add AgentPMT/agent-skills global-poverty-inequality-dataInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Last 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)tools
Plaud Transcripts Corrected With Your Own Terminology Glossary: Fixes the words your transcription keeps getting wrong, by giving the pipeline your vocabulary instead of hoping a bigger model guesses right. Every speech model mangles terms it has never seen: cell line and reagent names, drug and device names, case and matter numbers, part numbers, local spelling and number conventions, team and client names. Swapping to a different model does not fix this, because none of them have your terms e.
tools
Plaud Spoken Field Notes to a Structured Sheet: Turns a spoken site visit into a filled-in spreadsheet row, so measurements and specs never get typed up twice. Built for anyone who dictates structured details on the job rather than writing them down: window and flooring measurements, equipment specs, inspection findings, punch lists, service call notes. Say the details out loud in the same order each visit (client, room, width, drop, colour, notes) and the workflow reads each new Plaud recordin.
development
Plaud Recordings to Google Calendar Events: Puts the meetings you agree to out loud straight onto your Google Calendar, without Zapier in the middle. Plaud's own app has no Calendar integration, so this closes that gap directly: each new recording is scanned, the transcript pulled, and any genuine scheduling commitment spoken in it ("let's do Tuesday at 3", "I'll come back out Thursday morning") is extracted with the relative date resolved against the recording's own date and your timezone. Eac.
development
One Plaud Recording, Several Differently Formatted Summaries: Gets you past the one-template-per-recording ceiling. The Plaud app applies a single AutoFlow template to a recording, so if you want a short recap for yourself, a decisions-only version for the people who missed it, and a clean action list for your task manager, you are re-running or rewriting by hand. This workflow reads the transcript once and produces every format you have defined in a single pass: you list the output formats you.