MCP server to retrieve daily deals for different stores around Melbourne
{
"mcpServers": {
"daily-deals-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
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.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
GPL-3.0. View license →
Is it maintained?
Last commit 162 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
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