retail-price-tracker-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PRICE_TRACKER_DB | No | Path to the SQLite database file for storing tracked products and price history. | $PWD/tracker.db |
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 |
|---|---|
| add_productC | Add a retail product URL to the tracker. |
| list_productsC | List tracked products. |
| check_productC | Check one product and record history/events. |
| check_allA | Check all active products; useful for scheduled jobs. |
| price_historyC | Return price history for a product. |
| remove_productC | Deactivate tracking for a product. |
| resolve_productC | Search store adapters for product candidates matching a query. |
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 7 tools
Each tool has a clear and distinct purpose: adding, checking (individual or all), listing, viewing history, removing, and searching products. No overlap.
All tool names follow a consistent verb_noun pattern with underscores (e.g., add_product, check_all). The pattern is uniform and predictable.
Seven tools provide a well-scoped set for retail price tracking, covering core operations without excess or deficiency.
The set covers add, remove, list, check, history, and search. Missing an update operation for product details, but core tracking workflow is complete.