Aspen Catalog MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Aspen Catalog MCPCheck if my library has 'The Great Gatsby' available"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: book-recommender
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-mcpOr clone and build from source:
git clone https://github.com/ecmulli/aspen-catalog-mcp.git
cd aspen-catalog-mcp
npm install
npm run build3. Configure
Set the required environment variable:
export ASPEN_BASE_URL="https://catalog.faylib.org" # your library's Aspen catalog URLIf 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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceEnables searching the Wake County Public Library catalog and all NC Cardinal libraries, returning book details including title, author, format, availability status, and direct catalog links.1
- Flicense-qualityDmaintenanceMCP server that provides book recommendation tools, allowing an AI agent to search and filter books by genre, page count, and ratings using the Goodreads dataset.1
- Alicense-qualityDmaintenanceAn MCP server that exposes tools for querying a bookstore inventory, allowing AI agents to search and retrieve book information via the Model Context Protocol.2701MIT
- FlicenseAqualityCmaintenanceA read-only MCP server for Goodreads that enables LLMs to search for books, retrieve detailed book info with ratings and reviews, and explore recommendations, series, and author bibliographies using public data sources without requiring authentication.9
Related MCP Connectors
Agentic search over your Dewey document collections from any MCP-compatible client.
Search books and authors, fetch editions, browse subjects, and resolve cover images.
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ecmulli/aspen-catalog-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server