archives_library_record
Pack: georgia-archives · Endpoint: https://gateway.pipeworx.io/georgia-archives/mcp
Fetch one catalogue record from the National Archives of Georgia reference library by its biblionumber (the id archives_library_search returns), as parsed MARC. Returns the full MARC field/subfield structure plus a flattened summary of title, authors, imprint, ISBN, languages and physical description.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
biblionumber | string | yes | Koha biblionumber, e.g. “4035”. Returned as biblionumber by archives_library_search. |
Example call
Arguments
{
"biblionumber": "4035"
}
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_library_record","arguments":{"biblionumber":"4035"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('archives_library_record', {
"biblionumber": "4035"
});
More examples
{
"biblionumber": "6073"
}
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.