reg_agency_agenda
Pack: reginfo · Endpoint: https://gateway.pipeworx.io/reginfo/mcp
One agency’s full regulatory agenda for a given (or the newest) edition — every RIN it has open, grouped by rule_stage. Answers “what is EPA’s regulatory agenda”, “how many rules does DOL have in the proposed stage”. Use reg_agenda_search instead when filtering by keyword or across agencies.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
agency | string | yes | Agency name, acronym, or code, e.g. “EPA”, “Department of Labor”, “1200”. Matched case-insensitively against name/acronym/code, and against the PARENT agency (so a sub-agency’s rules are included when you ask for the parent). |
edition | string | no | Edition YYYYMM. Defaults to the newest edition actually loaded. |
limit | number,string | no | Max RINs to return (1-200, default 100). |
Example call
curl -X POST https://gateway.pipeworx.io/reginfo/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"reg_agency_agenda","arguments":{}}}'
Connect
Add this to your MCP client config:
{
"mcpServers": {
"reginfo": {
"url": "https://gateway.pipeworx.io/reginfo/mcp"
}
}
}
See Getting Started for client-specific install steps.