MCP Server for ETH Library Zurich โ Access 30M+ resources (books, maps, images, archives) via Discovery & Persons API
Project description
๐จ๐ญ Part of the Swiss Public Data MCP Portfolio
๐๏ธ eth-library-mcp
๐ English | Deutsch
MCP server giving AI models direct access to 30M+ resources at ETH Library Zurich โ books, maps, images, archival material, and linked-data person records.
Demo
Overview
eth-library-mcp connects AI assistants like Claude to the largest natural-science library in Switzerland. It exposes full-text search, archive-level queries, resource-type filtering, and person lookups via the ETH Library's Discovery and Persons APIs โ all through a single, standardised MCP interface.
7 Tools ยท 3 APIs ยท 2 Resources ยท 2 Prompts
MCP Protocol Version: 2025-06-18 (via mcp[cli]>=1.0.0,<2.0.0).
โ ๏ธ Known issue (BUG-02): The tool
eth_search_personsis currently non-functional because the Persons API endpoint returns HTTP 404. The correct URL needs to be verified at developer.library.ethz.ch. All other 6 tools work correctly.
Anchor demo query: "Find historical documents about Zurich school history in the ETH Library archives."
Features
- ๐ Full-text search over 30M+ resources with fields, operators, and facets
- ๐ Resource details โ full metadata via MMS-ID
- ๐๏ธ Archive search โ ETH University Archives, Max Frisch, Thomas Mann, Graphische Sammlung, Bildarchiv
- ๐ท๏ธ Resource type filter โ books, maps, images, archival material and more
- ๐ Education search โ curated workflow optimised for pedagogy and school history
- ๐ค Person search with linked-data enrichment (Wikidata, GND, Metagrid) (BUG-02: currently unavailable)
- ๐ Server overview โ all resource types and archives at a glance
- ๐ฃ๏ธ Built-in prompts โ structured research and education-research workflows
- โ๏ธ Dual transport โ stdio for Claude Desktop, Streamable HTTP/SSE for cloud deployment
Prerequisites
- Python 3.11+
- A free API key from developer.library.ethz.ch
Installation
# Clone the repository
git clone https://github.com/malkreide/eth-library-mcp.git
cd eth-library-mcp
# Install
pip install -e .
# Or with uv (recommended)
uv pip install -e .
Quickstart
# Set the API key
export ETH_LIBRARY_API_KEY=your_key_here # macOS / Linux
# $env:ETH_LIBRARY_API_KEY = "your_key_here" # Windows (PowerShell)
# Start the server (stdio mode for Claude Desktop)
python -m eth_library_mcp.server
Without an API key the server returns a helpful error message with the registration link โ no crashes.
Try it immediately in Claude Desktop:
"Find books about Swiss education history in the ETH Library." "Search the Max Frisch archive for manuscripts about Zurich."
โ More use cases by audience โ
Configuration
Environment Variables
| Variable | Description | Required |
|---|---|---|
ETH_LIBRARY_API_KEY |
API key for Discovery & Persons API | โ |
Claude Desktop Configuration
{
"mcpServers": {
"eth-library": {
"command": "python",
"args": ["-m", "eth_library_mcp.server"],
"env": {
"ETH_LIBRARY_API_KEY": "your_key_here"
}
}
}
}
Config file locations:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Cloud Deployment (SSE for browser access)
For use via claude.ai in the browser (e.g. on managed workstations without local software):
python -m eth_library_mcp.server --http --port 8000
The HTTP transport binds to 127.0.0.1 by default. To expose it on another
interface, pass --host explicitly:
# Only behind a reverse-proxy / firewall that terminates TLS and enforces auth.
python -m eth_library_mcp.server --http --host 0.0.0.0 --port 8000
โ ๏ธ Do not bind to
0.0.0.0without a reverse proxy. The server has no built-in auth, rate-limiting or TLS โ any LAN neighbour could call your tools.
๐ก "stdio for the developer laptop, HTTP for the browser โ behind a proxy."
Available Tools
Discovery API (api.library.ethz.ch)
| Tool | Description |
|---|---|
eth_search_resources |
Full-text search over 30M+ resources with fields, operators, facets |
eth_get_resource |
Full metadata for a specific resource via MMS-ID |
eth_search_archive |
Search within a specific archive (University Archives, Max Frisch, Thomas Mann, etc.) |
eth_search_by_type |
Filter by resource type (books, maps, images, archival material, etc.) |
eth_search_education |
Curated search for education topics (pedagogy, school history, etc.) |
Persons API
| Tool | Description |
|---|---|
eth_search_persons |
Person search with linked-data enrichment (Wikidata, GND, Metagrid) โ โ ๏ธ BUG-02 |
Utilities
| Tool | Description |
|---|---|
eth_library_info |
Server overview: all types and archives at a glance |
Resources & Prompts
| Item | Type | Description |
|---|---|---|
eth://resource-types |
Resource | All available resource types |
eth://archives |
Resource | All available archives and collections |
research-workflow |
Prompt | Structured research workflow |
education-research |
Prompt | Education topics workflow (Schulamt-optimised) |
Query Syntax
The Discovery API uses structured queries:
field,operator,value
| Field | Meaning |
|---|---|
any |
All fields (recommended for starters) |
title |
Title only |
creator |
Author / creator |
sub |
Subject headings / topics |
| Operator | Meaning |
|---|---|
contains |
Term is present |
exact |
Exact match |
begins_with |
Starts with |
Examples:
any,contains,Volksschule Zรผrich
title,contains,Pรคdagogik
creator,exact,Einstein Albert
sub,contains,Bildungsforschung
title,contains,Schule;sub,contains,Geschichte
Available Archives
| Identifier | Description |
|---|---|
ETH_Hochschularchiv |
Institutional memory of ETH Zurich |
ETH_MaxFrischArchiv |
Estate of Swiss author Max Frisch |
ETH_ThomasMannArchiv |
Letters and documents of Thomas Mann |
ETH_GraphischeSammlung |
Prints, drawings, graphic works |
ETH_Bildarchiv |
Science/technology history, Swissair (E-Pics) |
Example Use Cases
| Query | Tool |
|---|---|
| "Find books about Zurich school history" | eth_search_education |
| "What's in the Max Frisch archive?" | eth_search_archive |
| "Find historical maps of Switzerland" | eth_search_by_type |
| "Get full metadata for resource ID 991170525863705501" | eth_get_resource |
| "Which archives does the ETH Library hold?" | eth_library_info |
Project Structure
eth-library-mcp/
โโโ src/
โ โโโ eth_library_mcp/
โ โโโ __init__.py # Package init, version
โ โโโ server.py # FastMCP server, all tools
โโโ tests/
โ โโโ test_server.py # Unit tests
โโโ CHANGELOG.md
โโโ CONTRIBUTING.md # Contribution guide (English)
โโโ CONTRIBUTING.de.md # Contribution guide (German)
โโโ SECURITY.md # Security posture (English)
โโโ SECURITY.de.md # Security posture (German)
โโโ LICENSE
โโโ README.md # This file (English)
โโโ README.de.md # German version
โโโ claude_desktop_config.json # Example Claude Desktop configuration
โโโ pyproject.toml # Build configuration
Testing
# Unit tests (no API key required)
PYTHONPATH=src pytest tests/ -m "not live"
# Integration tests (API key required)
ETH_LIBRARY_API_KEY=xxx pytest tests/ -m "live"
Safety & Limits
- Read-only: All tools perform HTTP GET requests only โ no data is written, modified, or deleted.
- No personal data: The APIs return bibliographic metadata (titles, authors, subjects, identifiers). No personally identifiable information (PII) is processed or stored by this server.
- Authentication: A free API key from developer.library.ethz.ch is required. The key is read from the
ETH_LIBRARY_API_KEYenvironment variable and never logged or transmitted to third parties. - Rate limits: The ETH Library API enforces rate limits per API key. The server enforces a 30-second timeout per request. Use
limitandoffsetparameters conservatively. - Data freshness: Results reflect the ETH Library catalogue at query time. No caching is performed by this server.
- Terms of service: Bibliographic metadata is published as Public Domain โ free for all uses. API access is subject to the ETH Library Developer Portal terms.
- Known issue (BUG-02):
eth_search_personsreturns HTTP 404 โ the Persons API endpoint URL needs verification. All other 6 tools work correctly. - No guarantees: This is a community project, not affiliated with the ETH Library or ETH Zurich. Availability depends on upstream APIs.
Contributing
Contributions are welcome! See CONTRIBUTING.md (Deutsch) for guidelines.
Security
Read-only, no PII, a single upstream API key, and a fixed egress allow-list of ETH Library endpoints. See SECURITY.md (Deutsch) for the full security posture and accepted-risk decisions.
Changelog
See CHANGELOG.md
License
- Server code: MIT License โ see LICENSE
- Bibliographic metadata: Public Domain (no restrictions)
- API documentation: developer.library.ethz.ch
Powered by Model Context Protocol โข 2 APIs โข 7 Tools โข 2 Resources โข 2 Prompts
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file eth_library_mcp-0.3.3.tar.gz.
File metadata
- Download URL: eth_library_mcp-0.3.3.tar.gz
- Upload date:
- Size: 65.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b56ff057a65156cf060bc94da375b0594a22a9106b64a5292e3233b81d5dc296
|
|
| MD5 |
b49df76fc39cd7d30c5415a41ecf5bd0
|
|
| BLAKE2b-256 |
f7e6337d16beaf4e890587596364d8fba33df4702816cb5cabe42191689a8c23
|
File details
Details for the file eth_library_mcp-0.3.3-py3-none-any.whl.
File metadata
- Download URL: eth_library_mcp-0.3.3-py3-none-any.whl
- Upload date:
- Size: 20.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
313c7e8c46315c8402e194dff6a19d3766716dc06ec00d998de099bdc0bf98b5
|
|
| MD5 |
ee09800f3d1641a43ac8baecdebdd31e
|
|
| BLAKE2b-256 |
d1b715e1e97017792a7e90aae6c15a19131a9d2b6322e2e6c528bcf5d6c8f00c
|