archives_fonds_browse
Pack: georgia-archives · Endpoint: https://gateway.pipeworx.io/georgia-archives/mcp
Browse the fonds register of the National Archives of Georgia — roughly 14,650 fonds across 586 pages, 25 per page. Each row gives the holding regional archive, the archive name, the fond number, the fond name, the historical names the fond carried with their date ranges, and the inclusive dates of its administrative and personnel records. Browse only: the register has no query API.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
page | integer | no | Page number, 1-${FONDS_LAST_PAGE}. 25 fonds per page. Defaults to 1. |
Example call
Arguments
{
"page": 1
}
curl
curl -X POST https://gateway.pipeworx.io/georgia-archives/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"archives_fonds_browse","arguments":{"page":1}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('archives_fonds_browse', {
"page": 1
});
More examples
{
"page": 3
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"georgia-archives": {
"url": "https://gateway.pipeworx.io/georgia-archives/mcp"
}
}
}
See Getting Started for client-specific install steps.