archives_film_search
Pack: georgia-archives · Endpoint: https://gateway.pipeworx.io/georgia-archives/mcp
Search the Georgian national film catalogue (kinokatalogi, National Archives of Georgia) — 652 newsreels, documentaries and features. Filter by title with name; returns each film with its release year, genre, and its directors and camera operators as {id, name} objects carrying the catalogue’s own person ids. Paginates 15 at a time with a true total.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | no | Title substring to filter on, e.g. “თბილისი”. Omit to list the whole catalogue. This is the only filter the upstream honours — it silently ignores any other parameter and returns everything. |
page | integer | no | Page number, 15 films per page. Defaults to 1. |
locale | string | no | Interface locale for the returned labels: ka (default) or en. |
Example call
Arguments
{
"name": "თბილისი"
}
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_film_search","arguments":{"name":"თბილისი"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('archives_film_search', {
"name": "თბილისი"
});
More examples
{
"page": 2,
"locale": "en"
}
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.