reg_rin
Pack: reginfo · Endpoint: https://gateway.pipeworx.io/reginfo/mcp
Full detail for one Regulation Identifier Number (RIN), across EVERY Unified Agenda edition it has appeared in — proving the rule’s history rather than just its latest status. Returns the abstract, agency, and one entry per edition showing how rule_stage, rin_status, and priority_category changed over time. Answers “what is RIN 2060-AV62 about”, “history of this rulemaking”, “has this rule stalled or progressed”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
rin | string | yes | The RIN, e.g. “2060-AV62” (format AAAA-Bnnn — 4-char agency code, letter, 3 digits/letters). |
Example call
Arguments
{
"rin": "2060-AV62"
}
curl
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_rin","arguments":{"rin":"2060-AV62"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('reg_rin', {
"rin": "2060-AV62"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"reginfo": {
"url": "https://gateway.pipeworx.io/reginfo/mcp"
}
}
}
See Getting Started for client-specific install steps.