nara_digital_objects
Pack: us-national-archives · Endpoint: https://gateway.pipeworx.io/us-national-archives/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/nara_digital_objects for the schema, then POST the same URL with its arguments for the data.
List the digitised files attached to one US National Archives Catalog record — scanned page images, PDFs, audio and video — with a direct, public-domain download URL, file type and size for each. Use after nara_search or nara_record when you want the actual document rather than its description. Example: nara_digital_objects({ naid: “219756158” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
naid | string | yes | National Archives Identifier of the record whose scans you want, e.g. “219756158” |
limit | number | no | Maximum digital objects to return (default 50, max 500) |
Example call
Arguments
{
"naid": "219756158"
}
curl
curl -X POST https://gateway.pipeworx.io/us-national-archives/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nara_digital_objects","arguments":{"naid":"219756158"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nara_digital_objects', {
"naid": "219756158"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"us-national-archives": {
"url": "https://gateway.pipeworx.io/us-national-archives/mcp"
}
}
}
See Getting Started for client-specific install steps.