Aspen Catalog MCP
Enables AI clients to search Aspen Discovery library catalogs and check real-time book availability by keyword, author, or ISBN. This server allows users to verify local library inventory and filter book recommendations accordingly.
README
aspen-catalog-mcp
An MCP (Model Context Protocol) server for searching Aspen Discovery library catalogs. Use it with Claude, or any MCP-compatible AI client, to check if your local library carries a book before recommending it.
What it does
search_catalog— Search the library catalog by keyword, title, author, subject, or ISBNcheck_availability— Check a list of book titles against the catalog, so AI recommendations can be filtered to books your library actually has
Setup
1. Get API access from your library
Aspen Discovery supports two access methods:
- IP allow-listing (recommended) — Ask your library to add your server's IP to the Aspen Discovery API allow-list. No credentials needed.
- API token pair — Some libraries may issue API key pairs used by the Aspen LiDA mobile app.
Your library also needs to allow your IP through any CDN/firewall (e.g. Cloudflare) in front of the catalog.
2. Install
npm install -g aspen-catalog-mcp
Or clone and build from source:
git clone https://github.com/ecmulli/aspen-catalog-mcp.git
cd aspen-catalog-mcp
npm install
npm run build
3. Configure
Set the required environment variable:
export ASPEN_BASE_URL="https://catalog.faylib.org" # your library's Aspen catalog URL
If using token auth, also set:
export ASPEN_API_KEY1="your-key-1"
export ASPEN_API_KEY2="your-key-2"
4. Add to Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"library-catalog": {
"command": "npx",
"args": ["-y", "aspen-catalog-mcp"],
"env": {
"ASPEN_BASE_URL": "https://catalog.faylib.org"
}
}
}
}
Or if running from source:
{
"mcpServers": {
"library-catalog": {
"command": "node",
"args": ["/path/to/aspen-catalog-mcp/dist/index.js"],
"env": {
"ASPEN_BASE_URL": "https://catalog.faylib.org"
}
}
}
}
Finding your library's Aspen catalog URL
Many public libraries use Aspen Discovery. The catalog URL is typically:
https://catalog.yourlibrary.orghttps://yourlibrary.aspendiscovery.org
You can check if your library uses Aspen Discovery by looking for "Powered by Aspen Discovery" in the footer of their online catalog.
How it works
This server talks to the Aspen Discovery SearchAPI, specifically the searchLite method, which returns catalog records matching a search query.
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.