Priceminder MCP Server
Real-time Shopee competitor price monitoring, powered by AI agents through the Model Context Protocol (MCP). Enables AI agents to track, analyze, and alert on price movements across Shopee Southeast Asia.
README
Priceminder MCP Server
Priceminder β Real-time Shopee competitor price monitoring, powered by AI agents through the Model Context Protocol (MCP).
π Sign up free: priceminder.online
Monitor competitor prices across Shopee Southeast Asia (SG, MY, TH, VN). Let your AI agent track, analyze, and alert on price movements β all through natural language.
π Features
| # | Tool | Description | Tier |
|---|---|---|---|
| 1 | get_monitor_list |
List all products you're tracking | π Query |
| 2 | get_price_summary |
Price summary across all tracked products (batch mode) | π Query |
| 3 | get_price_history |
Time-series price data for a specific product | π Query |
| 4 | get_alerts |
List price drop alerts | π Query |
| 5 | add_monitor |
Add a new product to track | β‘ Action |
| 6 | update_monitor_status |
Pause or resume monitoring | β‘ Action |
| 7 | mark_alert_read |
Mark an alert as read | β‘ Action |
| 8 | get_crawl_health |
Check crawler engine health & stats | π Insight |
| 9 | get_monitor_overview |
Dashboard overview of all monitors | π Insight |
| 10 | search_my_products |
Search your tracked products by keyword | π Insight |
π Quick Start
Option A: Hosted HTTP (Recommended β No Setup)
Just add this URL to any MCP-compatible client:
https://priceminder.online/mcp_server?key=YOUR_MCP_KEY
Step 1: Get your MCP Key
- Visit priceminder.online to sign up
- Or call the API directly (see API Reference)
Step 2: Configure your AI client
For Claude Desktop / Cursor / Cherry Studio:
{
"mcpServers": {
"priceminder": {
"type": "http",
"url": "https://priceminder.online/mcp_server?key=YOUR_MCP_KEY"
}
}
}
For Claude Code:
claude mcp add priceminder --type http --url "https://priceminder.online/mcp_server?key=YOUR_MCP_KEY"
Option B: Self-Hosted (Docker)
docker run -d \
--name priceminder-mcp \
-p 8082:8082 \
-e SENTINEL_API_BASE=https://priceminder.online/shopee \
-e SENTINEL_TOKEN=YOUR_SENTINEL_TOKEN \
-e SENTINEL_API_KEY=sentinel-mvp-2026 \
ghcr.io/haidrau/sentinel-mcp-server:latest
Option C: Self-Hosted (pip)
pip install sentinel-mcp-server
# Run in stdio mode (for Claude Desktop, Cursor, etc.)
export SENTINEL_TOKEN=YOUR_SENTINEL_TOKEN
sentinel-mcp-server
# Or run in HTTP mode
export SENTINEL_TOKEN=YOUR_SENTINEL_TOKEN
sentinel-mcp-server --mode http
ποΈ Architecture
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β AI Client β
β (Claude Desktop / Cursor / Claude Code / Codex) β
ββββββββββββββββ¬βββββββββββββββββββββββββββββββββββββββ
β MCP Protocol (stdio or HTTP/SSE)
βΌ
ββββββββββββββββββββββββββββββββββββββββ
β Priceminder MCP Server β
β ββββββββββββββββββββββββββββββββββ β
β β Tool Registry (10 tools) β β
β β - get_monitor_list β β
β β - get_price_summary β β
β β - get_price_history β β
β β - get_alerts β β
β β - add_monitor β β
β β - ... β β
β ββββββββββββββββ¬ββββββββββββββββββ β
β β HTTP + Token Auth
β ββββββββββββββββΌββββββββββββββββββ β
β β API Client (httpx) β β
β ββββββββββββββββ¬ββββββββββββββββββ β
βββββββββββββββββββΌβββββββββββββββββββββ
β HTTPS
βββββββββββββββββββΌβββββββββββββββββββββ
β Priceminder REST API β
β (User Mgmt / Monitor / Price / Alert)β
βββββββββββββββββββ¬βββββββββββββββββββββ
β
βββββββββββββββββββΌβββββββββββββββββββββ
β PostgreSQL 16 β
β (Price History / Users / Alerts) β
ββββββββββββββββββββββββββββββββββββββββ
π§ Configuration
Environment Variables
| Variable | Description | Default |
|---|---|---|
SENTINEL_API_BASE |
Backend API base URL | https://priceminder.online/shopee |
SENTINEL_TOKEN |
Your authentication token | (required) |
SENTINEL_API_KEY |
API key for backend auth | sentinel-mvp-2026 |
SENTINEL_TIMEOUT |
HTTP request timeout (s) | 30 |
MCP_MODE |
Run mode: stdio or http |
stdio |
MCP_HOST |
HTTP server bind address | 127.0.0.1 |
MCP_PORT |
HTTP server port | 8082 |
LOG_LEVEL |
Log level | INFO |
π¬ Usage Examples
Once configured, you can ask your AI agent things like:
Price monitoring:
- "Show me my tracked products on Shopee SG"
- "What's the price trend for the iPhone 14 I'm monitoring?"
- "Has any competitor dropped prices in the last 3 days?"
Adding products:
- "Track this product: https://shopee.sg/product-123"
- "Add this Samsung TV to my watchlist"
Alerts & insights:
- "Any new price drop alerts?"
- "How's the crawler system running today?"
- "Give me a dashboard overview"
π‘ API Reference
Authentication
All API calls require these headers:
X-Api-Key: sentinel-mvp-2026
X-Sentinel-Token: YOUR_TOKEN
Generate MCP Key
curl -X POST https://priceminder.online/shopee/mcp/generate-key \
-H "X-Api-Key: sentinel-mvp-2026" \
-H "X-Sentinel-Token: YOUR_TOKEN"
Verify MCP Key (MCP Server Internal)
curl https://priceminder.online/shopee/mcp/verify-key?key=YOUR_MCP_KEY \
-H "X-MCP-Internal-Key: sentinel-mcp-internal-2026"
π Free vs Pro
| Feature | Free | Pro |
|---|---|---|
| Active monitors | 5 max | Unlimited |
| Price history | 3 days | 90 days |
| Price summary | 3 days | 90 days |
| Call rate | 60/hour | Unlimited |
| Real-time alerts | β | β |
| Priority support | β | β |
π οΈ Development
git clone https://github.com/haidrau/sentinel-mcp-server.git
cd sentinel-mcp-server
# Install dev dependencies
pip install -e ".[dev]"
# Run tests
python -m pytest tests/
# Start in dev mode
export SENTINEL_TOKEN=your-test-token
python -m sentinel_mcp.server
π License
MIT License β see LICENSE for details.
π€ Contributing
Contributions are welcome! Feel free to:
- Open issues for bugs or feature requests
- Submit PRs for new tools or improvements
- Ask questions in the discussions
π Links
- Website: priceminder.online
- GitHub: github.com/haidrau/sentinel-mcp-server
- Gitee: gitee.com/haidrau/sentinel-mcp-server
- MCP Directory: mcp.so/server/sentinel-mcp-server
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.