Wake County Public Library
Enables 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.
README
Wake County Public Library MCP Server
A Model Context Protocol (MCP) server that provides search capabilities for the Wake County Public Library catalog.
Features
- Search the Wake County Public Library catalog
- Search local Wake County catalog or all NC Cardinal libraries
- Returns detailed information including:
- Title
- Author
- Format (book, DVD, audiobook, etc.)
- Publication year
- Availability status
- Direct links to catalog entries
- Cover images
Installation
npm install
npm run build
Usage
With Claude Desktop
Add this to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"wake-county-library": {
"command": "node",
"args": ["/absolute/path/to/mcp-wake-county-library/dist/index.js"]
}
}
}
With Other MCP Clients
Run the server using:
npm start
Or directly:
node dist/index.js
Available Tools
search_library
Search the Wake County Public Library catalog.
Parameters:
query(string, required): The search term (book title, author, keyword, etc.)searchSource(string, optional):"local"(default) - Search only Wake County catalog"all"- Search all NC Cardinal libraries
limit(number, optional): Maximum number of results to return (default: 10)
Example:
{
"query": "Foundation Isaac Asimov",
"searchSource": "local",
"limit": 5
}
Response:
Returns an array of search results with the following structure:
[
{
"title": "Foundation",
"author": "Asimov, Isaac",
"format": "Book",
"publicationYear": "2004",
"availability": "Available",
"url": "https://catalog.wake.gov/Union/Record/...",
"coverImage": "https://..."
}
]
Development
Building
npm run build
Testing
Run the test suite:
npm test
Run tests in watch mode:
npm run test:watch
Generate coverage report:
npm run test:coverage
The test suite includes:
- Unit tests for HTML parsing logic
- Integration tests for search functionality with mocked HTTP requests
- Tests for MCP server tool interface
- Error handling tests
Project Structure
mcp-wake-county-library/
├── src/
│ ├── index.ts # Main MCP server implementation
│ ├── library-search.ts # Search and parsing logic
│ └── __tests__/ # Test files
│ ├── library-search.test.ts
│ ├── server.test.ts
│ └── mocks/
│ └── searchResults.html
├── dist/ # Compiled JavaScript output
├── coverage/ # Test coverage reports
├── package.json
├── tsconfig.json
├── jest.config.js
└── README.md
How It Works
The server:
- Constructs search URLs for the Wake County library catalog
- Fetches search results using appropriate HTTP headers
- Parses the HTML response using Cheerio
- Extracts relevant book information from the results
- Returns structured JSON data
License
MIT
Links
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.