Skip to main content
Glama
pastukhov

opds-mcp

by pastukhov

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
OPDS_BASE_URLNoThe catalog URL used when a tool call doesn't pass its own url. This is the recommended way to point the server at a specific library.
OPDS_PASSWORDNoUsed as a fallback for HTTP Basic Auth when a tool call doesn't pass its own credentials.
OPDS_USERNAMENoUsed as a fallback for HTTP Basic Auth when a tool call doesn't pass its own credentials.
OPDS_DOWNLOAD_DIRNoWhere opds_download saves files; defaults to a directory under the OS temp folder.

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
opds_browseB

Fetches an OPDS catalog document (feed, navigation, or acquisition list; OPDS 1.x Atom/XML or OPDS 2.0 JSON) and returns its navigation links (search, next/prev, subsections) and entries (books/publications) with their acquisition (download) and cover image links.

opds_searchA

Searches an OPDS catalog. Pass either the catalog's root/feed URL (its OpenSearch description will be discovered via the feed's rel="search" link) or an OpenSearchDescription document URL directly, plus a free-text query. Returns matching entries the same way opds_browse does.

opds_get_entryA

Fetches a single OPDS entry document (a per-publication Atom entry or OPDS 2.0 publication), typically the URL found in an entry's rel="alternate" link, and returns its full details including acquisition links.

opds_downloadA

Downloads the file behind an OPDS acquisition link (as returned in the acquisitions array of opds_browse/opds_search/opds_get_entry) to a local directory and returns the saved file path. Defaults to a directory under the OS temp folder (/tmp/opds-mcp-downloads); configure OPDS_DOWNLOAD_DIR to persist elsewhere.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a distinct purpose: opds_browse for navigation, opds_search for queries, opds_get_entry for detailed entry info, and opds_download for file retrieval. There is no overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent opds_verb_noun pattern (opds_browse, opds_download, opds_get_entry, opds_search), making the set predictable and easy to understand.

Tool Count5/5

With exactly 4 tools, the server covers the essential operations for an OPDS client (browse, search, get entry, download) without being excessive or insufficient.

Completeness5/5

The tool set provides complete coverage for interacting with an OPDS catalog: navigating feeds, searching, retrieving detailed entry information, and downloading files. No obvious gaps for client-side operations.

Maintenance

ActivityInactive
ResponsivenessNo issues