MCP server for the Open Archives genealogical search engine.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Production-grade hybrid MCP + HTTP + SSE server generated from the Open Archives OpenAPI specification. Covers genealogical records (births, deaths, marriages, censuses), archive statistics, historical weather, and full-text page transcriptions of historical documents.
OpenAPI source used to generate tools:
A schema-aware server that automatically converts the OpenAPI specification into callable tools and exposes them through multiple transports:
A hosted endpoint is available β no installation required.
In claude.ai or Claude Desktop:
https://mcp.openarchieven.nl/No authentication is required β Open Archives is a public dataset.
Once the connector is added you can ask Claude, for example:
Claude will call the matching tool (search_records, show_record,
get_marriages, get_historical_weather, get_census_data, β¦) and
return links to the corresponding record pages on
https://www.openarchieven.nl.
The server speaks MCP over Streamable HTTP; there is no stdio distribution. To run your own instance:
Point your MCP client at http://localhost:3001/ (or your own public URL) the same
way as the hosted endpoint above.
Every API operation becomes a tool automatically via generate.ts.
All 21 operations:
| Tool Name | Description |
|---|---|
search_records | Search genealogical records |
show_record | Show a single genealogical record |
match_record | Match a person to birth and death records |
get_births_years_ago | List births from N years ago |
get_births | Find birth records |
get_deaths | Find death records |
get_marriages | Find marriage records |
get_archives | List all archives with statistics |
get_record_stats | Record count per archive |
get_source_type_stats | Record count per source type |
get_event_type_stats | Record count per event type |
get_comment_stats | Comment count statistics |
get_family_name_stats | Family name frequency |
get_first_name_stats | First name frequency |
get_profession_stats | Profession frequency |
get_breakdown | Cross-tabulation grouped by archive, source type, event type, place or year |
get_historical_weather | Historical weather from KNMI |
get_census_data | Dutch census data 1795β1899 |
search_transcriptions | Full-text search across page transcriptions of historical documents |
browse_transcriptions | Hierarchically browse transcriptions by source archive, archive number or inventory |
show_transcription | Retrieve a single page transcription by id |
Note: The
callback(JSONP) parameter present in the upstream API is excluded from all tools β it is irrelevant in an MCP/JSON-RPC context.
Beyond the 21 auto-generated tools, the server registers one hand-written tool β view_transcription β that opens transcribed pages in an interactive IIIF deep-zoom viewer (OpenSeadragon) with the transcription text alongside, using the MCP Apps extension (io.modelcontextprotocol/ui).
| Tool Name | Description |
|---|---|
view_transcription | Open one or more transcribed pages (ids: ["NL-SdmGA_1504889_11", β¦]) in a deep-zoom IIIF viewer with the transcript; optional highlight_term |
ui://openarchieven/viewer.html) in a sandboxed iframe that loads images directly from the transcription image hosts (CSP-allowlisted as *.transkribus.eu, *.archief.nl, *.archieven.nl, *.memorix.nl). Transkribus and the archief.nl iipsrv server provide true IIIF deep zoom; the preserve*.archieven.nl thumbnail hosts render as flat images.The viewer is a single self-contained dist/viewer.html, bundled at build time with npm run build:viewer (vite + vite-plugin-singlefile); it is not listed by the REST GET /tools endpoint, only via MCP tools/list.
Uses actual OpenAPI parameter schemas. Validates:
Stateless JSON-RPC transport β a new MCP server instance is created per request.
Origin validation: Browser requests must come from
claude.ai,claude.com, or any domain listed inALLOWED_ORIGINS. Requests with noOriginheader (native MCP clients,curl, server-to-server) are accepted. Unknown origins receive HTTP 403.
/.well-known)Static, hand-editable JSON files served verbatim from well-known/:
Edit well-known/mcp-server-card.json and well-known/agent-card.json directly β no restart required (files are read on each request). Responses are sent with Content-Type: application/json; charset=utf-8 and Cache-Control: public, max-age=3600.
Streaming endpoints (/events/:name, /stream/:name) automatically paginate through results for endpoints that support a start offset:
start by number_show per page: heartbeat comment every 10 seconds to keep connections aliveOptional Redis support.
If Redis is running, upstream responses are cached with a per-tool TTL tuned to the data's volatility:
| Category | TTL | Tools |
|---|---|---|
| Immutable historical | never expires | get_historical_weather, get_census_data |
| Slowly-changing metadata | 7 days | get_archives |
| Stats aggregations | 1 day | get_record_stats, get_source_type_stats, get_event_type_stats, get_comment_stats, get_family_name_stats, get_first_name_stats, get_profession_stats, get_breakdown |
| Individual record lookups | 1 day | show_record, show_transcription |
| Search-style | 6 hours | search_records, match_record, get_births, get_deaths, get_marriages, search_transcriptions, browse_transcriptions |
| Date-bound | next UTC midnight | get_births_years_ago |
CACHE_TTL (default 3600) is the fallback for any tool not in the map above.
If Redis is unavailable:
The upstream API enforces 4 requests per second per IP. The server queues all upstream calls through a token-bucket rate limiter (configurable via RATE_LIMIT_RPS).
Copy .env.example to .env and adjust:
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/openarchieven-mcp-server)<a href="https://allmcps.com/mcp/openarchieven-mcp-server"><img src="https://allmcps.com/api/badge/openarchieven-mcp-server?style=directory" alt="Openarchieven MCP Server on AllMCPs" /></a>