agent-commerce-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_purchase_intentA | Strukturierte Kaufabsicht erstellen. Erstellt einen neuen Kaufvorgang, der dann mit Angeboten verglichen und weiterverfolgt werden kann. Args: item: Beschreibung des gewünschten Artikels quantity: Gewünschte Menge (Standard: 1) budget_max: Maximales Budget (0 = kein Limit) budget_currency: Währung (Standard: "USD") delivery_address: Lieferadresse delivery_notes: Besondere Lieferhinweise |
| compare_offersA | Angebote für eine Kaufabsicht vergleichen. Nimmt eine Liste von Angeboten entgegen, speichert sie und gibt eine Vergleichsübersicht zurück. Args: purchase_id: ID der Kaufabsicht offers: Liste von Angeboten, jedes mit: merchant_name (str), price (float), optional: currency, shipping_cost, delivery_days, condition, url, notes |
| track_purchaseA | Status eines Kaufvorgangs abrufen oder aktualisieren. Mögliche Status: intent, comparing, ordered, shipped, delivered, cancelled. Args: purchase_id: ID des Kaufvorgangs new_status: Optional — neuer Status setzen |
| list_purchasesC | Kaufhistorie auflisten. Args: status: Optional — Filter nach Status (intent, comparing, ordered, shipped, delivered, cancelled) limit: Maximale Anzahl (Standard: 20) |
| verify_merchantA | Händler-Zuverlässigkeit prüfen oder Erfahrung melden. Ohne successful_order: Zeigt aktuellen Score. Mit successful_order: Aktualisiert den Score basierend auf einer neuen Erfahrung. Args: merchant_name: Name des Händlers successful_order: Optional — True wenn Bestellung erfolgreich, False wenn problematisch |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool targets a distinct aspect of the commerce workflow: creating a purchase intent, comparing offers, listing history, tracking status, and verifying merchants. No overlap in functionality.
All tools follow a consistent verb_noun pattern in snake_case: create_purchase_intent, compare_offers, list_purchases, track_purchase, verify_merchant. Verbs are imperative and nouns are appropriately singular or plural.
With 5 tools, the server covers the core commerce workflow without unnecessary bloat. Each tool is essential and the count is well-scoped for its purpose.
The tool surface addresses the main stages: creating intents, comparing offers, tracking, and merchant verification. Minor gaps like lacking a dedicated delete or update purchase tool are acceptable given the focus on pre-purchase comparison.