get_docket
Pack: regulations-gov · Endpoint: https://gateway.pipeworx.io/regulations-gov/mcp
Single docket detail by docketId (e.g., “EPA-HQ-OAR-2021-0317”). Returns full metadata + summary counts.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
docket_id | string | yes | Docket ID |
Example call
Arguments
{
"docket_id": "EPA-HQ-OAR-2021-0317"
}
curl
curl -X POST https://gateway.pipeworx.io/regulations-gov/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_docket","arguments":{"docket_id":"EPA-HQ-OAR-2021-0317"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_docket', {
"docket_id": "EPA-HQ-OAR-2021-0317"
});
Response shape
| Field | Type | Description |
|---|---|---|
id | string | null | Docket ID |
type | string | null | Resource type |
included | array | Included related resources |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": [
"string",
"null"
],
"description": "Docket ID"
},
"type": {
"type": [
"string",
"null"
],
"description": "Resource type"
},
"included": {
"type": "array",
"description": "Included related resources",
"items": {
"type": "object",
"properties": {
"id": {
"type": [
"string",
"null"
],
"description": "Resource ID"
},
"type": {
"type": [
"string",
"null"
],
"description": "Resource type"
}
},
"additionalProperties": true
}
}
},
"additionalProperties": true
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"regulations-gov": {
"url": "https://gateway.pipeworx.io/regulations-gov/mcp"
}
}
}
See Getting Started for client-specific install steps.