Aspen Catalog MCP Server

1

Add it to Claude Code

Run this in a terminal.

Run in terminal
claude mcp add -e "ASPEN_BASE_URL=${ASPEN_BASE_URL}" aspen-catalog -- npx -y aspen-catalog-mcp
Required:ASPEN_BASE_URL+ 2 optional
README.md

Search Aspen Discovery library catalogs and check real-time book availability.

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 ISBN
  • check_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.org
  • https://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

Tools (2)

search_catalogSearch the library catalog by keyword, title, author, subject, or ISBN.
check_availabilityCheck a list of book titles against the catalog to filter recommendations.

Environment Variables

ASPEN_BASE_URLrequiredThe base URL of your library's Aspen Discovery catalog.
ASPEN_API_KEY1First part of the API key pair for token authentication.
ASPEN_API_KEY2Second part of the API key pair for token authentication.

Configuration

claude_desktop_config.json
{"mcpServers": {"library-catalog": {"command": "npx", "args": ["-y", "aspen-catalog-mcp"], "env": {"ASPEN_BASE_URL": "https://catalog.faylib.org"}}}}

Try it

Search the library catalog for books by Neil Gaiman.
Check if my local library has copies of 'Project Hail Mary' and 'The Martian'.
Find books about quantum physics in the library catalog.
Search for the ISBN 9780593135204 in the library system.

Frequently Asked Questions

What are the key features of Aspen Catalog?

Search library catalogs by keyword, title, author, subject, or ISBN. Check real-time book availability for specific titles. Integrates with Aspen Discovery SearchAPI. Supports IP allow-listing and API token authentication.

What can I use Aspen Catalog for?

Verifying if a book is available at your local library before purchasing. Filtering AI-generated book recommendations against actual local inventory. Quickly looking up library call numbers for specific authors or subjects. Automating library catalog research for students and researchers.

How do I install Aspen Catalog?

Install Aspen Catalog by running: npm install -g aspen-catalog-mcp

What MCP clients work with Aspen Catalog?

Aspen Catalog works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Aspen Catalog docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare