A Model Context Protocol (MCP) server that provides access to the Library of Congress Subject Headings (LCSH) through a simple API interface.
This MCP server allows AI assistants like Claude to search the Library of Congress Subject Headings (LCSH) using the public suggest2 API. It provides a clean interface for querying LCSH data and handling the various response formats from the API.
The easiest way to install the cataloger mcp server is directly from PyPI:
pip install cataloger-mcp-serverIf you prefer to install from source:
git clone https://github.com/kltng/cataloger-mcp-server.git
cd cataloger-mcp-server
pip install -e .-
Install Claude Desktop if you haven't already from https://claude.ai/desktop
-
Install the cataloger mcp server using one of the installation methods above
-
Open Claude Desktop and navigate to Settings:
- Click on your profile picture in the bottom-left corner
- Select "Settings" from the menu
-
Configure the MCP Server:
- In the Settings panel, click on "MCP Servers"
- Click "Add Server"
- Fill in the following details:
- Name:
cataloger mcp search - Command:
cataloger-mcp-server
- Name:
- Click "Save"
-
Enable the Server:
- Toggle the switch next to the cataloger mcp search server to enable it
- Claude will now have access to the LCSH search capabilities
-
Install Cherry Studio following the instructions in the Cherry documentation: https://docs.cherry-ai.com/docs/en-us/advanced-basic/mcp/install
-
Install the cataloger mcp server using one of the installation methods above.
-
Prepare the MCP JSON config for Cherry Studio. Use the "Import JSON" method with a snippet like:
{ "mcpServers": { "cataloger-mcp": { "command": "uvx", "args": ["cataloger-mcp-server"] } } }- You can change the key
"cataloger-mcp"to whatever label you prefer in Cherry Studio.
- You can change the key
-
Import into Cherry Studio:
- Open Cherry Studio and go to Settings → MCP (or MCP Servers).
- Click Add / Import from JSON (wording may vary slightly by version).
- Paste the JSON snippet above and confirm to add the server.
-
Verify the server:
- Ensure the new
cataloger-mcp-serverentry appears in the MCP list and is enabled. - Start a new chat and confirm that Cherry Studio can call the cataloger MCP tools.
- Ensure the new
Once the server is set up and enabled in Claude Desktop, you can ask Claude to search for Library of Congress Subject Headings. Here are some example prompts:
- "Can you search the Library of Congress Subject Headings for 'artificial intelligence'?"
- "Look up 'climate change' in LCSH and tell me the official subject headings."
- "What are the LCSH terms related to 'quantum computing'?"
Claude will use the MCP server to query the LCSH and LCNAF databases and return the results.
- "Find the name authority record for 'Smith, John Adam'."
- "Perform a keyword search in LCSH for 'environmental policy'.
- MCP Tool Integration: Exposes
search_lcsh(for subject headings, default left-anchored search),search_lcsh_keyword(for subject headings, keyword search), andsearch_name_authority(for personal names) tools that can be used by AI assistants. - Resource Endpoints: Provides resource endpoints at
lcsh://search/{query}andlcnaf://search/{query}. - Robust Error Handling: Gracefully handles API errors, connection issues, and unexpected response formats
- Multiple Response Formats: Supports both dictionary (hits) and list response formats from the LCSH API
If you encounter issues with the MCP server:
- Check Server Status: In Claude Desktop, go to Settings > MCP Servers and check if the server is enabled and running
- Restart the Server: Toggle the server off and on again
- Check Console Output: If running the server manually, check the console output for any error messages
- Verify Network Connection: Ensure your computer has an active internet connection to access the LCSH API
This project is licensed under the MIT License - see the LICENSE file for details.
For more detailed documentation about the server implementation, API references, and testing information, please refer to the references.md file.