MCP Server für Schweizer Wissenschaftsbibliotheken: swisscovery (500+ Bibliotheken via SRU), e-rara, e-periodica und e-manuscripta (OAI-PMH). Kein API-Key erforderlich.
Project description
🇨🇭 Part of the Swiss Public Data MCP Portfolio
📚 swiss-academic-libraries-mcp
MCP server providing access to Swiss academic libraries — swisscovery, e-rara, e-periodica, e-manuscripta. No API key required.
Overview
swiss-academic-libraries-mcp connects AI models to the full Swiss academic library infrastructure via standardised, open protocols. It covers the swisscovery union catalogue (500+ libraries, 10M+ records) and three digitalisation platforms: historical prints (e-rara), periodicals (e-periodica) and manuscripts (e-manuscripta).
All data sources use open, authentication-free protocols (SRU/MARC21, OAI-PMH/Dublin Core). The server supports both local use via Claude Desktop (stdio transport) and cloud deployment (Streamable HTTP).
Anchor demo query: "Which Swiss university dissertations on primary school pedagogy are held in Swiss libraries, and are any of them digitised in e-rara?"
Features
- 11 tools across 4 data sources — all read-only, no API key required
- swisscovery search with full CQL syntax: full-text, title, author, subject, ISBN/ISSN
- OAI-PMH harvesting with date range and collection filters plus pagination via resumption tokens
- MARC21 parser extracting 20+ fields (title, creator, publication info, subjects, abstract, URLs)
- Dublin Core parser for all three digitalisation portals
- Dual transport: stdio for Claude Desktop · Streamable HTTP for cloud/self-hosted deployments
- 2 built-in prompts:
research-workflowandeducation-research - Markdown and JSON output for all tools
- 34 unit tests (no network) + 6 live smoke tests
Data Sources
| Source | Protocol | Content | Records | |--------|----------|---------|---------|| | swisscovery (SLSP) | SRU / MARC21 | 500+ Swiss libraries | 10M+ | | e-rara | OAI-PMH / Dublin Core | Digitised historical prints | 250k+ | | e-periodica | OAI-PMH / Dublin Core | Digitised periodicals (1750–today) | 1M+ articles | | e-manuscripta | OAI-PMH / Dublin Core | Manuscripts & archival material | 100k+ |
Tools
| Tool | Source | Function |
|---|---|---|
library_info |
— | Entry point: overview of all sources and tools |
swisscovery_search |
swisscovery | Full-text / CQL search across the union catalogue |
swisscovery_get_record |
swisscovery | Single record by MMS-ID |
erara_list_records |
e-rara | Prints filtered by date / collection |
erara_get_record |
e-rara | Single item by OAI identifier |
erara_list_collections |
e-rara | All participating libraries |
eperiodica_list_records |
e-periodica | Articles filtered by date |
eperiodica_get_record |
e-periodica | Single article by OAI identifier |
emanuscripta_list_records |
e-manuscripta | Manuscripts filtered by date / collection |
emanuscripta_get_record |
e-manuscripta | Single object by OAI identifier |
emanuscripta_list_collections |
e-manuscripta | All archives / collections |
Example Use Cases
| Query | Tool |
|---|---|
| "Which books about Swiss primary schools are held in Swiss libraries?" | swisscovery_search |
| "Show digitised historical works from ETH Library" | erara_list_records |
| "Which Swiss periodicals were digitised in 2023?" | eperiodica_list_records |
| "What manuscript collections does e-manuscripta hold?" | emanuscripta_list_collections |
Prerequisites
- Python 3.11 or higher
- uv / uvx (recommended) or pip
- Internet access (all APIs are publicly available)
Installation
Claude Desktop (recommended)
Add to claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"swiss-academic-libraries": {
"command": "uvx",
"args": ["swiss-academic-libraries-mcp"]
}
}
}
Restart Claude Desktop — the server starts automatically on first use.
Cloud / Self-hosted (Streamable HTTP)
uvx swiss-academic-libraries-mcp --http --port 8000
Development
git clone https://github.com/malkreide/swiss-academic-libraries-mcp
cd swiss-academic-libraries-mcp
pip install -e .
Quickstart
Start by calling library_info for a full overview. Then:
"Which books about Swiss primary schools are held in Swiss libraries?"
→ swisscovery_search(query='subject = "Volksschule"', max_records=20)
"Show digitised historical works from ETH Library"
→ erara_list_records(set_spec="zut")
"Which Swiss periodicals were digitised in 2023?"
→ eperiodica_list_records(from_date="2023-01-01", until_date="2023-12-31")
"What manuscript collections does e-manuscripta hold?"
→ emanuscripta_list_collections()
💡 "No API key — just install and query."
CQL Search Syntax (swisscovery)
Full text: Volksschule Zürich
Title: title = "education reform"
Author: creator = "Pestalozzi"
Subject: subject = "pedagogy"
ISBN: isbn = "978-3-05-006234-0"
Combined: title = "school" AND creator = "Pestalozzi"
Pagination: start_record = 11
Configuration
No API keys or environment variables required.
| Parameter | Default | Description |
|---|---|---|
--http |
off | Enable Streamable HTTP transport |
--port |
8000 | Port for HTTP transport |
Project Structure
swiss-academic-libraries-mcp/
├── src/
│ └── swiss_academic_libraries_mcp/
│ ├── __init__.py # Package init
│ ├── server.py # FastMCP server, 11 tools, 2 prompts, 1 resource
│ └── api_client.py # HTTP client, MARC21 + OAI-PMH/DC parsers
├── tests/
│ └── test_server.py # 34 unit tests + 6 live smoke tests
├── pyproject.toml
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md # This file (English)
└── README.de.md # German version
Testing
# Unit tests (no network required)
PYTHONPATH=src pytest tests/ -m "not live"
# Live smoke tests (internet required)
PYTHONPATH=src pytest tests/ -m "live"
Contributing
Contributions are welcome! Please read CONTRIBUTING.md for guidelines on:
- Reporting bugs and requesting features
- Setting up the development environment
- Code style and test requirements
- Submitting pull requests
This project follows the conventions of the Swiss Public Data MCP Portfolio.
Changelog
See CHANGELOG.md
License
MIT License — see LICENSE
Author
Hayal Oezkan · github.com/malkreide
Credits & Related Projects
- Data: swisscovery / SLSP · e-rara · e-periodica · e-manuscripta
- Protocol: Model Context Protocol — Anthropic / Linux Foundation
- Related: eth-library-mcp — ETH Library Discovery & Persons API
- Portfolio: Swiss Public Data MCP Portfolio
| Server | Description |
|---|---|
zurich-opendata-mcp |
City of Zurich Open Data |
eth-library-mcp |
ETH Library Discovery & Persons API |
swiss-statistics-mcp |
Swiss Federal Statistics (BFS) |
fedlex-mcp |
Swiss Federal Law via Fedlex SPARQL |
swiss-transport-mcp |
OJP journey planning, SIRI-SX disruptions |
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 swiss_academic_libraries_mcp-0.2.0.tar.gz.
File metadata
- Download URL: swiss_academic_libraries_mcp-0.2.0.tar.gz
- Upload date:
- Size: 29.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f515fb3556009915a86a08f40f4b73c3514f4c6c4885611c66f7715e547e99e6
|
|
| MD5 |
a94303d26cc4d0ee19a8673511a8db40
|
|
| BLAKE2b-256 |
b232873d4af279334774f7fef0d2c5b5549473271cebd206300a7358288be960
|
Provenance
The following attestation bundles were made for swiss_academic_libraries_mcp-0.2.0.tar.gz:
Publisher:
publish.yml on malkreide/swiss-academic-libraries-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
swiss_academic_libraries_mcp-0.2.0.tar.gz -
Subject digest:
f515fb3556009915a86a08f40f4b73c3514f4c6c4885611c66f7715e547e99e6 - Sigstore transparency entry: 1206042923
- Sigstore integration time:
-
Permalink:
malkreide/swiss-academic-libraries-mcp@d7b42dc82aa894bfc900bbd3c2383b57729456ed -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/malkreide
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d7b42dc82aa894bfc900bbd3c2383b57729456ed -
Trigger Event:
release
-
Statement type:
File details
Details for the file swiss_academic_libraries_mcp-0.2.0-py3-none-any.whl.
File metadata
- Download URL: swiss_academic_libraries_mcp-0.2.0-py3-none-any.whl
- Upload date:
- Size: 19.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ceb83464d084c16e132e76c405e6b55750fd4a3478e2741def736ac2aff81f44
|
|
| MD5 |
de8323b0f6e39f0fbfcc47ae7e3acbc9
|
|
| BLAKE2b-256 |
2f8b4bcdd74cfda9bdcec04ea64c1403550a0a2283177225ea5a76b489d43e15
|
Provenance
The following attestation bundles were made for swiss_academic_libraries_mcp-0.2.0-py3-none-any.whl:
Publisher:
publish.yml on malkreide/swiss-academic-libraries-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
swiss_academic_libraries_mcp-0.2.0-py3-none-any.whl -
Subject digest:
ceb83464d084c16e132e76c405e6b55750fd4a3478e2741def736ac2aff81f44 - Sigstore transparency entry: 1206042940
- Sigstore integration time:
-
Permalink:
malkreide/swiss-academic-libraries-mcp@d7b42dc82aa894bfc900bbd3c2383b57729456ed -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/malkreide
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d7b42dc82aa894bfc900bbd3c2383b57729456ed -
Trigger Event:
release
-
Statement type: