MCP server to retrieve daily deals for different stores around Melbourne
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"bigwatermelon-deals": {
"url": "https://daily-deals-mcp-server-7ow81.kinsta.app/sse",
"type": "sse"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server that automatically fetches and analyzes daily produce deals from Big Watermelon, a fruit and vegetable wholesale store in Melbourne, Australia. The server uses Requesty.ai to extract deal information from images and makes it available to AI agents via the MCP protocol.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
35+ AI tools for TCG card grading, Monte Carlo pricing, 370K+ product search. BYOK.
Production-grade MCP server and CLI tool for Shopify Admin GraphQL API — 49+ tools, YAML-extensible, dual auth, dual transport, Docker-ready
A command line tool for setting up commercetools MCP server
This is the reference implementation for the mcp server
MCP Security Weekly
Get CVE alerts and security updates for Daily Deals Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that automatically fetches and analyzes daily produce deals from Big Watermelon, a fruit and vegetable wholesale store in Melbourne, Australia. The server uses Requesty.ai to extract deal information from images and makes it available to AI agents via the MCP protocol.
graph TB
subgraph "MCP Clients"
A[Cline/Roo Code]
B[Claude Desktop]
C[AnythingLLM]
end
subgraph "MCP Server"
D[SSE Transport]
E[Rate Limiter]
F[MCP Handler]
end
subgraph "Core Logic"
G[Deals Fetcher]
H[Cache Manager]
I[Image Processor]
end
subgraph "External Services"
J[Big Watermelon Website]
K[Requesty.ai API]
end
A --> D
B --> D
C --> D
D --> E
E --> F
F --> G
G --> H
H --> I
I --> J
I --> K
style D fill:#e1f5ff
style G fill:#fff4e1
style K fill:#ffe1e1
Clone the repository:
git clone https://github.com/hebra/ahemseepee/daily-deals-mcp-server.git
cd daily-deals-mcp-server
Set up environment variables:
export REQUESTY_API_KEY=your-requesty-api-key-here
Install dependencies:
make deps
Build and run:
make build
make run
The server will start on http://localhost:8080 with the following endpoints:
GET /sse - SSE connection endpoint for MCP clientsPOST /message - MCP message endpointGET /health - Health check endpointGET /ready - Readiness check endpoint# Build Docker image
make docker-build
# Run Docker container
make docker-run
All configuration is done via environment variables with sensible defaults:
| Variable | Description | Default |
|---|---|---|
REQUESTY_API_KEY | Requesty.ai API key for image analysis | (Required) |
| Variable | Description | Default |
|---|---|---|
REQUESTY_BASE_URL | Requesty.ai API base URL | https://router.requesty.ai/v1 |
REQUESTY_MODEL | AI model to use | google/gemini-2.5-flash |
REQUESTY_MAX_TOKENS | Maximum tokens in response | 4096 |
REQUESTY_TEMPERATURE | Model temperature (0.0-1.0) | 0.0 |
| Variable | Description | Default |
|---|---|---|
PORT | HTTP server port | 8080 |
RATE_LIMIT_REQUESTS | Maximum requests per window | 100 |
RATE_LIMIT_WINDOW | Rate limit time window | 1m |
| Variable | Description | Default |
|---|---|---|
FETCH_HOUR | Hour to fetch deals (0-23, Melbourne time) | 7 |
CACHE_FILE | Path to cache file | bigwatermelon-dailydeals.cached.json |
SPECIALS_URL | URL to scrape for deals | https://www.bigwatermelon.com.au/category/specials/ |
TIMEZONE | Timezone for scheduling | `Australia/Mel |