Doorzo Deal Monitor
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DOORZO_STATE_DIR | No | Directory to store state (monitors and alerts). Defaults to ~/.doorzo-mcp/. |
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": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| doorzo_searchA | Search doorzo.com across Japanese shops for a keyword. |
| doorzo_hot_searchesA | Return doorzo's current hot/trending search keywords. |
| doorzo_exchange_rateA | Return the JPY -> currency exchange rate doorzo uses. |
| doorzo_monitor_addA | Add a deal monitor: alert when items match keyword at/below price. |
| doorzo_monitor_removeA | Remove a monitor by id (also drops its seen-item state). |
| doorzo_monitor_listA | List all monitors (id, keyword, price ceiling, last check stats). |
| doorzo_check_monitorsA | Check monitors for NEW deals; notify and log matches. |
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 targets a distinct function: monitor lifecycle (add/remove/list/check), search, trends, and exchange rate. There is no overlap or ambiguity between them.
All tools share the 'doorzo_' prefix, but the verb_noun pattern is inconsistent: 'monitor_add' and 'monitor_remove' place noun first, while 'check_monitors' puts verb first, and 'search'/'exchange_rate' are not verb_noun at all. Still readable and predictable.
Seven tools is well-scoped for a deal monitor service, covering management, execution, and auxiliary queries without bloat.
Core monitor lifecycle is complete (add, remove, list, check), and search/rate tools support the workflow. Missing an update/price change operation is a minor gap that agents can work around by removing and re-adding.