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 ”, “poorest school districts in ”, “how many students in poverty in ”. Pass a state to rank districts by poverty rate, or a leaid for one district.

Parameters

NameTypeRequiredDescription
statestringnoUS state name or 2-letter abbreviation. Required unless leaid is given.
leaidstringnoSpecific district LEA id from education_find_districts.
yearnumbernoEstimate year. Default 2020.
limitnumbernoMax 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.

Regenerated from source · build July 29, 2026