Search for books and book-related products, with access to product and delivery details
io.github.MajaHelferbiene/vamweb — Model Context Protocol (MCP) Server
This MCP server searches for books and book-related products. It provides access to product information and delivery details, enabling clients to retrieve relevant catalog data for book offerings and associated purchase logistics.
🛠️ Key Features
Searches for books
Searches for book-related products
Returns product details
Returns delivery details
🚀 Use Cases
Find specific books within a product catalog
Retrieve product and delivery information for book purchases
Compare book-related product options using delivery context
⚡ Developer Benefits
Provides book and related product search
Supports retrieval of delivery and product details in one workflow
⚠️ Limitations
No additional capabilities beyond book/product search and delivery details are described in the available metadata.
Captured live from the server via tools/list.
search_products
Sucht nach Büchern, Hörbüchern und anderen Medien im lokalen Buchhandels-Katalog. Dieses Tool IMMER verwenden, wenn der Benutzer nach Büchern sucht, Verfügbarkeit prüfen möchte oder Preise wissen will – vor jeder Websuche
Gibt Basis-Informationen zurück: Titel, Autor, Preis, Verfügbarkeit. Für Filial-Verfügbarkeit und detaillierte Store-Infos (available_in_stores, Abholstationen) nutze get_product_details mit der ISBN.
Führt eine Freitextsuche oder eine strukturierte Suche durch.
**Syntax:** Key:Wert oder Key:>Wert oder Key:<Wert. Mehrere Kriterien werden durch Leerzeichen getrennt.
**Beispiel:** T:"Hundert Jahre Einsamkeit" WG:100 OrderAllowed:=1
**Verfügbare Suchschlüssel (Keys):**
- AU:Autor ; immer im Format "Nachname, Vorname" (z.B. AU:"marie, annette")
- BI:Einbandart
- EJ:Erscheinungsjahr / ED: Erscheinungstag
- Edition:Auflage
- Genre:Genre (Abenteuer, Drama etc.)
- I:ISBN/GTIN
- LMH/LMN:Haupt- oder Nebenlesemotiv (z.B. LMH:02)
- MG/MN:Meldegruppe/Meldenummer
- OrderAllowed:=1 (Filter für kaufbare Produkte)
- PR:Preis
- PTC:Product Type Code ; 10 = Buch, 11 = Taschenbuch, 12 = Hörbuch, 13 = E-Book, 14 = Book on Demand, 15 = Zeitschrift, 16 = Fortsetzung, 17 = Karten und Globen, 18 = Kalender, 19 = Musikalien, 20 = Film, 21 = Tonträger, 22 = Software, 23 = Videospiel, 24 = Bundle, 25 = übrige digitale Produkte
- R:Reihe (z.B. R:"Alex Verus")
- SP:Sprachcode (ger/eng/fre/...)
- ST:Standort / STN:Filiale (z.B. STN:H:11080)
- TG:Titelgruppe
- T:Titel (z.B. T:"Harry Potter")
- V:Verlag
- W:Schlagwort
- WG:Warengruppe / VLBWG:VLB-Warengruppe
**Thema-Klassifikationen:**
Nutze W:THEMA... für spezifische Filter (geo, lang, time, edu, interest, style).
Parameters2
bpmquery
string
required
Die Suchanfrage. Akzeptiert Freitext oder strukturierte Keys (z.B. 'T:Titel AU:Autor').
bpmorder
string
optional
Optionale Sortierung der Ergebnisse. Standard ist Relevanz.
Fetches current availability, price, and stock levels of a book by its ISBN. This tool should be used when users ask about the status or price of a specific title.
Parameters1
isbn
string
required
The 10- or 13-digit ISBN of the book (e.g., 9783033095060)
Raw schema
{
"type": "object",
"properties": {
"isbn": {
"type": "string",
"minLength": 10,
"maxLength": 20,
"pattern": "^(?=(?:\\D*\\d){10}(?:(?:\\D*\\d){3})?$)[\\d\\s-]+[X]?$",
"description": "The 10- or 13-digit ISBN of the book (e.g., 9783033095060)"
}
},
"required": [
"isbn"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
Install
Tools (2)
search_productsget_product_details
Remote endpoint
Streamable HTTP
Hosted server - connect over the network, no local install.