skills/federal-and-state-education-data-hub/SKILL.md
Federal and State Education Data Hub: Natural language interface to World Bank education statistics. Query by country and education level, get enrollment rates, literacy, gender parity indices. Use when an agent needs federal and state education data hub, education statistics literacy, education policy analysis, school performance benchmarking, literacy and enrollment trends, regional equity reporting, query education data, country or region through AgentPMT-hosted remote tool calls.
npx skillsauth add AgentPMT/agent-skills federal-and-state-education-data-hubInstall 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.
Unified education analytics tool for public datasets covering literacy, enrollment, completion, equity, accountability, and school performance. Supports natural-language queries and routes requests across education-focused sources to return usable comparisons by country, state, and region.
Access education statistics for 200+ countries from the World Bank. Query enrollment rates, literacy rates, gender parity indices, pupil-teacher ratios, completion rates, and learning poverty data by country and education level.
Fetch education statistics for a country or region from the World Bank World Development Indicators database.
Required fields:
action — "query_education_data"country_or_region (string) — Country or region name in plain English (e.g., "Kenya", "United States", "India", "South Africa", "World"). The tool first checks a built-in mapping of common country names, then falls back to fuzzy matching against the World Bank countries API for exact and partial matches.Optional fields:
education_level (string) — Education level to query. Default: "all".
"primary" — Primary enrollment, completion, gender parity, pupil-teacher ratio, out-of-school rate, and learning poverty"secondary" — Secondary enrollment, completion, gender parity, and pupil-teacher ratio"tertiary" — Tertiary enrollment and gender parity"literacy" — Adult literacy and youth literacy rates"all" — All of the above combinedgender_disaggregation (boolean) — Include male/female breakdowns for literacy, primary enrollment, and secondary enrollment. Default: false.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")include_gender_parity (boolean) — Include gender parity indices (ratio of female to male enrollment/literacy) for each education level. Default: true.include_teacher_ratios (boolean) — Include pupil-teacher ratios for primary and secondary levels. Default: false.include_completion_rates (boolean) — Include primary and secondary completion rates where available. Default: true.compare_to_region (boolean) — Include regional averages for key indicators (primary enrollment, secondary enrollment, adult literacy) based on the country's World Bank region. Skipped when querying "World". Default: true.Example — Primary education data for a country:
{
"action": "query_education_data",
"country_or_region": "Kenya",
"education_level": "primary",
"time_period": "latest"
}
Example — All education data with gender breakdown:
{
"action": "query_education_data",
"country_or_region": "India",
"education_level": "all",
"gender_disaggregation": true,
"include_gender_parity": true,
"include_teacher_ratios": true
}
Example — Literacy rates over a time range:
{
"action": "query_education_data",
"country_or_region": "Nigeria",
"education_level": "literacy",
"time_period": "2015:2020"
}
Example — Tertiary enrollment without regional comparison:
{
"action": "query_education_data",
"country_or_region": "Brazil",
"education_level": "tertiary",
"compare_to_region": false
}
Example — Secondary education with teacher ratios:
{
"action": "query_education_data",
"country_or_region": "South Africa",
"education_level": "secondary",
"include_teacher_ratios": true,
"include_completion_rates": true
}
Responses include:
indicator — World Bank indicator codevalues — Array of data points with year, value, and country nameavailable — Whether data was foundIf a country name cannot be resolved, the tool returns an error.
| Level | Indicators | |---|---| | literacy | Adult literacy rate, Youth literacy rate, Female literacy*, Male literacy* | | primary | Primary enrollment, Primary completion, Gender parity (primary), Pupil-teacher ratio*, Out-of-school rate, Learning poverty, Female enrollment*, Male enrollment* | | secondary | Secondary enrollment, Secondary completion, Gender parity (secondary), Pupil-teacher ratio*, Female enrollment*, Male enrollment* | | tertiary | Tertiary enrollment, Gender parity (tertiary) |
*Included only when the corresponding optional flag is enabled.
education_level: "all" to get a comprehensive snapshot of a country's education system.gender_disaggregation: true and include_gender_parity: true to get male/female breakdowns and parity indices.education_level: "all" and review the sdg_alignment section for target progress.include_teacher_ratios: true and include_completion_rates: true to assess education system capacity.true/false), not strings like "yes" or "no".education_level value is validated and must be one of: primary, secondary, tertiary, literacy, all.Federal and State Education Data Hub on AgentPMT.query_education_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_education_data (action slug: query-education-data): Fetch education statistics for a country or region from the World Bank World Development Indicators database. Price: 20 credits. Parameters: compare_to_region, country_or_region, education_level, gender_disaggregation, include_completion_rates, include_gender_parity, include_teacher_ratios, 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: "education-statistics-literacy".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "education-statistics-literacy", 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": "education-statistics-literacy"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "education-statistics-literacy"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "education-statistics-literacy"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "education-statistics-literacy"
}
}
Product slug: education-statistics-literacy
Marketplace page: https://www.agentpmt.com/marketplace/education-statistics-literacy
../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": "Federal-and-State-Education-Data-Hub",
"arguments": {
"action": "query_education_data",
"compare_to_region": true,
"country_or_region": "example country or region",
"education_level": "all",
"gender_disaggregation": false,
"include_completion_rates": true,
"include_gender_parity": true,
"include_teacher_ratios": false,
"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": "education-statistics-literacy",
"parameters": {
"action": "query_education_data",
"compare_to_region": true,
"country_or_region": "example country or region",
"education_level": "all",
"gender_disaggregation": false,
"include_completion_rates": true,
"include_gender_parity": true,
"include_teacher_ratios": false,
"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_education_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.