education_child_poverty
Pack: education-data · Endpoint: https://gateway.pipeworx.io/education-data/mcp
CHILD POVERTY by school district — Census SAIPE estimates of the number and percentage of school-age children (5-17) in poverty, which drive federal Title I funding. Keyless. Use for “child poverty rate in
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
state | string | no | US state name or 2-letter abbreviation. Required unless leaid is given. |
leaid | string | no | Specific district LEA id from education_find_districts. |
year | number | no | Estimate year. Default 2020. |
limit | number | no | Max districts to return (1-100, default 25). |
Example call
Arguments
{
"state": "MS"
}
curl
curl -X POST https://gateway.pipeworx.io/education-data/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"education_child_poverty","arguments":{"state":"MS"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('education_child_poverty', {
"state": "MS"
});
More examples
{
"state": "CA",
"limit": 20
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"education-data": {
"url": "https://gateway.pipeworx.io/education-data/mcp"
}
}
}
See Getting Started for client-specific install steps.