worldcat-mcp-server
Enables searching WorldCat's library catalog for bibliographic records, editions, citations, and exports in various formats via natural language.
README
WorldCat MCP Server
An MCP (Model Context Protocol) server for searching WorldCat, the world's largest library catalog — 500M+ records from 100,000+ libraries worldwide.
Built with FastMCP and the WorldCat Discovery API v2.
Tools
| Tool | Description |
|---|---|
worldcat_search |
Search by keyword, title, author, subject, ISBN, ISSN, OCLC number, or advanced CQL |
worldcat_get_record |
Get full bibliographic record with LCSH, LC/Dewey classification, physical description |
worldcat_get_editions |
Find other editions and formats of a work (hardcover, ebook, translations) |
worldcat_get_citations |
Get formatted citations in APA, Chicago, Harvard, MLA, and Turabian |
worldcat_search_by_subject |
Search specifically by Library of Congress Subject Headings |
worldcat_export_ris |
Export results as RIS (for Zotero, EndNote, etc.) |
worldcat_export_bibtex |
Export results as BibTeX |
Rich metadata
Records include:
- Library of Congress Subject Headings (LCSH)
- LC Classification and Dewey Decimal numbers
- Physical descriptions, edition statements
- Publisher, place, and date
- ISBN, ISSN, LCCN, OCLC numbers
- Summaries/abstracts and table of contents
- Online access URLs
- Edition counts across libraries
Setup
1. Get WorldCat API credentials
You need a WSKey with wcapi scope from the OCLC Developer Network. Institutional access through a library is typically required.
2. Install
cd worldcat-mcp-server
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
3. Add to Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"worldcat": {
"command": "/path/to/worldcat-mcp-server/venv/bin/python",
"args": ["/path/to/worldcat-mcp-server/server.py"],
"env": {
"WORLDCAT_API_KEY": "your-wskey",
"WORLDCAT_API_SECRET": "your-wskey-secret"
}
}
}
}
Or if using Claude Code CLI:
claude mcp add worldcat \
/path/to/worldcat-mcp-server/venv/bin/python \
/path/to/worldcat-mcp-server/server.py \
-e WORLDCAT_API_KEY=your-wskey \
-e WORLDCAT_API_SECRET=your-wskey-secret
Usage examples
- "Search WorldCat for books on the history of jazz"
- "Find the full record for OCLC number 1234567890"
- "What other editions exist for this book?"
- "Get an APA citation for this WorldCat record"
- "Search by LCSH subject heading 'African Americans -- History'"
- "Export these results as RIS for Zotero"
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.