education_district_finance
Pack: education-data · Endpoint: https://gateway.pipeworx.io/education-data/mcp
School district FUNDING AND SPENDING — revenue by source (federal / state / local) and expenditure by function, plus computed PER-PUPIL spending. Keyless federal data (NCES CCD school district finance survey, F-33). Use for “how much does
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 | Fiscal year. Default 2019 (the finance survey lags). |
sort_by | string | no | Ranking field, largest first. Default per_pupil_spending. |
limit | number | no | Max districts to return (1-100, default 25). |
Example call
Arguments
{
"state": "NY",
"sort_by": "per_pupil_spending",
"limit": 10
}
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_district_finance","arguments":{"state":"NY","sort_by":"per_pupil_spending","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('education_district_finance', {
"state": "NY",
"sort_by": "per_pupil_spending",
"limit": 10
});
More examples
{
"state": "IL",
"sort_by": "total_revenue",
"limit": 25
}
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.