get_package
Pack: govinfo · Endpoint: https://gateway.pipeworx.io/govinfo/mcp
Metadata for a single package by packageId (e.g., “BILLS-118hr1234ih”, “FR-2024-05-12”). Returns title, dates, citations, granule count, download links (PDF/XML/MODS).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
package_id | string | yes | GovInfo packageId |
Example call
Arguments
{
"package_id": "BILLS-118hr1234ih"
}
curl
curl -X POST https://gateway.pipeworx.io/govinfo/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_package","arguments":{"package_id":"BILLS-118hr1234ih"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_package', {
"package_id": "BILLS-118hr1234ih"
});
More examples
{
"package_id": "FR-2024-05-12"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Package metadata including title, dates, citations, and download links"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"govinfo": {
"url": "https://gateway.pipeworx.io/govinfo/mcp"
}
}
}
See Getting Started for client-specific install steps.