Available ActionsEach successful request consumes credits as outlined below.
query_health_data10cr
Details
Explore health and public health data for any country in the world. Look up life expectancy, mortality rates, immunization coverage, health expenditure, infectious disease prevalence, and demographic health indicators. Compare health outcomes across countries, benchmark against WHO targets, and track progress on global health goals — all from a comprehensive global data set.
Use Cases
Research life expectancy by country, Compare infant and child mortality rates across regions, Track immunization coverage trends, Analyze health expenditure as percentage of GDP, Study infectious disease prevalence, Monitor maternal mortality rates, Benchmark health outcomes against WHO targets, Compare healthcare access across countries, Support public health policy research, Assess progress toward health-related SDG targets
Dynamic MCP Setup
Connect once through AgentPMT Dynamic MCP, then use approved tools from the same agent connection.
30 Second Setup
STDIO connector for Claude Code, Codex, Cursor, Zed, and other LLMs that require STDIO or custom connections.
npm install -g @agentpmt/mcp-routeragentpmt-setup
Hosted Streamable HTTPS
MCP endpoint for browser-based apps like ChatGPT, Claude, Grok, or any time you want a streamable connection with no local install.
https://api.agentpmt.com/mcp
Config Example
Use the hosted endpoint directly in clients that support remote MCP. Store your Bearer token in the client config or secret field.
Fetch health and demographic data for a country or region from the World Bank. Returns mortality rates, life expectancy, immunization coverage, health expenditure, infectious disease prevalence, and demographic indicators with WHO benchmarks and SDG target comparisons.
Fetch health and demographic data for a country or region from the World Bank. Returns mortality rates, life expectancy, immunization coverage, health expenditure, infectious disease prevalence, and demographic indicators with WHO benchmarks and SDG target comparisons.
country_or_regionrequiredstring
Country or region name in plain language (e.g., 'Japan', 'Kenya', 'United States', 'South Asia', 'Sub-Saharan Africa'). Uses fuzzy matching against the World Bank countries API.
health_topicstring
Health topic to query. Options: mortality, life_expectancy, immunization, expenditure, infectious_disease, demographics, or all.
Login to view your API and budget keys. The example above uses placeholder values. Sign in to see personalized code with your bearer token.
Autonomous agents can access this tool through AgentAddress credit balances or direct x402 payments. Use the Autonomous Agent API reference for endpoint shapes after choosing the access pattern below.
Recommended
Credit-Based Access Using AgentAddress
AgentAddress is preferred when an autonomous agent needs persistent file access, stored platform state, or maximum tool use ability across repeated calls.
Use direct x402 for independent one-off tool calls that do not require shared files or stored platform state.
Accepted public payments
Stablecoin
USDC
Chains
Base, Arbitrum, Optimism, Polygon, and Avalanche
Direct x402 payments are not enabled for this product; use AgentAddress credit access instead.
Usage Instructions
Usage guidance provided directly by the developer for this product.
Health and Public Health Data Hub
Access health and demographic data for any country from the World Bank. Query mortality rates, life expectancy, immunization coverage, health expenditure, infectious disease prevalence, and demographic indicators with WHO benchmarks and SDG 3 target comparisons.
Actions
query_health_data
Fetch health and demographic data for a country or region from the World Bank World Development Indicators database. Uses the World Bank countries API for fuzzy country name resolution.
Required fields:
action — "query_health_data"
country_or_region (string) — Country or region name in plain English (e.g., "Japan", "Kenya", "United States", "South Asia", "Sub-Saharan Africa"). The tool searches the World Bank countries API for exact and partial matches.
Optional fields:
health_topic (string) — Health topic to query. Default: "all".
"life_expectancy" — Overall life expectancy, male life expectancy, female life expectancy
"immunization" — Measles, DPT, and Hepatitis B immunization coverage rates
"expenditure" — Health expenditure per capita and as % of GDP, physicians per 1,000, hospital beds per 1,000, nurses/midwives per 1,000
"infectious_disease" — Tuberculosis incidence, HIV prevalence
"demographics" — Birth rate, death rate, fertility rate, total population, population ages 0-14, population ages 65+, urban population percentage
"all" — All health indicators listed above
time_period (string) — Time period for data. Default: "latest".
"latest" — Most recent available data point
"YYYY" — Specific year (e.g., "2020")
"YYYY:YYYY" — Year range (e.g., "2015:2020")
"last5" — Last 5 years of data
"last10" — Last 10 years of data
Also accepts "last_5_years" and "last_10_years"
include_who_benchmarks (boolean) — Include WHO benchmarks and SDG 3 target comparisons for applicable indicators. Shows target value, current value, difference, and whether the target is met. Default: true.
include_demographic_context (boolean) — Include population context (total population, age distribution under 14 and over 65) alongside health data. Automatically skipped when the topic is already "demographics". Default: true.
include_regional_comparison (boolean) — Include a note about regional comparison data availability. Default: false.
assessment — "Meets target" or "Above/Below target"
meets_target — Boolean
demographic_context — When enabled, population total, ages 0-14 percentage, and ages 65+ percentage.
regional_comparison_note — When enabled, notes the region for which comparison data is available.
If a country name is not found, the response returns an error with a suggestion to try the full country name.
WHO Benchmarks & SDG Targets
Indicator
SDG Target
WHO Target
Maternal mortality
SDG 3.1
< 70 per 100,000 live births
Under-5 mortality
SDG 3.2
< 25 per 1,000 live births
Infant mortality
SDG 3.2
< 12 per 1,000 live births
Neonatal mortality
SDG 3.2
< 12 per 1,000 live births
Measles immunization
SDG 3.b
>= 95% coverage
DPT immunization
SDG 3.b
>= 95% coverage
HIV prevalence
SDG 3.3
End epidemic by 2030
TB incidence
SDG 3.3
End epidemic by 2030
For mortality and disease indicators, lower values are better (below target = meets target). For immunization, higher values are better (above target = meets target).
Health Indicators by Topic
Topic
Indicators
mortality
Maternal mortality, Under-5 mortality, Infant mortality, Neonatal mortality, Death rate
life_expectancy
Life expectancy (overall), Life expectancy (male), Life expectancy (female)
immunization
Measles immunization, DPT immunization, Hepatitis B immunization
expenditure
Health expenditure per capita (USD), Health expenditure (% GDP), Physicians per 1,000, Hospital beds per 1,000, Nurses/midwives per 1,000
infectious_disease
Tuberculosis incidence (per 100,000), HIV prevalence (% population)
demographics
Birth rate, Death rate, Fertility rate, Total population, Population ages 0-14 (%), Population ages 65+ (%), Urban population (%)
Common Workflows
Country health profile — Call with health_topic: "all" to get a complete health snapshot with WHO benchmark comparisons.
SDG 3 progress check — Query mortality and immunization topics with include_who_benchmarks: true to assess progress toward health SDG targets.
Health system assessment — Use health_topic: "expenditure" to review healthcare spending, physician density, and hospital capacity.
Cross-country comparison — Make separate calls for different countries with the same topic and time period, then compare results.
Disease burden analysis — Use health_topic: "infectious_disease" with time_period: "last10" to track TB and HIV trends.
Important Notes
Data is sourced from the World Bank World Development Indicators database.
health_topic must be one of: mortality, life_expectancy, immunization, expenditure, infectious_disease, demographics, all. Invalid values produce a validation error.
time_period is validated and must be "latest", a 4-digit year, a YYYY:YYYY range, or "last5"/"last10"/"last_5_years"/"last_10_years". Invalid formats produce a validation error.
Data availability varies by country and indicator; some countries may have gaps.
Most recent data may be 1-3 years behind the current year.
All indicator data is fetched concurrently for performance.
Demographic context is automatically excluded when the health topic is already "demographics" to avoid duplicate data.
Frequently Asked Questions
How do I connect this tool to an external agent?
You can install the local MCP server by opening a terminal and running:
After the external agent is connected to an Agent Group that can use this tool, paste this prompt into the agent:
Agent prompt
Use the AgentPMT-Tool-Search-and-Execution tool. First call action 'get_instructions' so you know how to use the tool search interface. Then call action 'get_schema' with tool_id 6980d5d271cad8f61bf5b1ad ("Global Health & Public Health Data"). After reading the schema and any returned instructions, tell me what this tool can do, we are going to be using it
The agent should fetch the tool schema first, collect the required parameters for your request, and then call the tool through AgentPMT.
Looking for help integrating AI into your business? Set up a free consultation.