archives_library_search
Pack: georgia-archives · Endpoint: https://gateway.pipeworx.io/georgia-archives/mcp
Search the scientific reference library catalogue of the National Archives of Georgia (Koha ILS) by keyword, title, author or subject. Returns a true result total plus the page of records, each with its permanent biblionumber and catalogue URL. Records are Georgian-language with parallel Latin titles where the record has one. Pages 20 at a time via offset.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Search terms. Georgian or Latin script both work. |
index | string | no | Which index to search: keyword (default), title, author, subject. |
offset | integer | no | Zero-based record offset for paging; the page size is 20. Pass 20 for the second page. |
Example call
Arguments
{
"query": "tbilisi"
}
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_search","arguments":{"query":"tbilisi"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('archives_library_search', {
"query": "tbilisi"
});
More examples
{
"query": "tbilisi",
"index": "title",
"offset": 20
}
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.