salling-food-waste-mcp
Find discounted food waste from Danish supermarkets (Salling Group) via the Model Context Protocol. Provides tools to search nearby stores or get products by store ID.
README
Salling Food Waste MCP Server
Find discounted food waste from Danish supermarkets (Salling Group) via the Model Context Protocol.
Live endpoint: https://salling-food-waste-mcp-production.up.railway.app/mcp
Tools
| Tool | Description |
|---|---|
search_food_waste |
Find nearby stores with clearance items. Accepts ZIP code, GPS coordinates, or Danish address. |
get_store_food_waste |
Get all discounted products for a specific store by Salling store ID. |
Connect to your AI assistant
ChatGPT
Requires Plus, Team, Business, Enterprise, or Education plan with Developer Mode enabled.
- In a chat, click the "+" icon in the input area
- Select "Developer Mode"
- Click "Add sources"
- Enter the server URL:
https://salling-food-waste-mcp-production.up.railway.app/mcp - Check "I trust this application" and click Create
Claude.ai
Requires Pro, Max, Team, or Enterprise plan.
- Go to Settings > Connectors (direct link)
- Click "Add custom connector"
- Enter the server URL:
https://salling-food-waste-mcp-production.up.railway.app/mcp - Click Add
- In chat, click the Search and Tools icon to enable the connector
Claude Desktop
Option A: Connectors UI (recommended)
Same as Claude.ai above — open Settings > Connectors > Add custom connector and enter the URL.
Option B: Config file
Edit your config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"madspild": {
"command": "npx",
"args": [
"mcp-remote@latest",
"https://salling-food-waste-mcp-production.up.railway.app/mcp"
]
}
}
}
Restart Claude Desktop after saving.
Claude Code
claude mcp add --transport http --scope user madspild https://salling-food-waste-mcp-production.up.railway.app/mcp
Or add to .mcp.json in your project:
{
"mcpServers": {
"madspild": {
"type": "http",
"url": "https://salling-food-waste-mcp-production.up.railway.app/mcp"
}
}
}
Rate limits
- Per IP: 10 requests per minute (HTTP 429 with
Retry-Afterheader) - Daily: Soft cap at 9,500 requests/day (Salling API hard limit is 10,000)
- The server respects
Retry-Afterheaders from the Salling API to avoid quarantine
Bring your own API key (HTTP mode)
When using the public HTTP endpoint, you can supply your own Salling API key via the X-Salling-API-Key header. This bypasses the server's shared quota so you aren't affected by other users' traffic.
curl -X POST https://salling-food-waste-mcp-production.up.railway.app/mcp \
-H "Content-Type: application/json" \
-H "X-Salling-API-Key: YOUR_KEY_HERE" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
If the header is omitted, the server falls back to its built-in key.
Self-hosting
Create .env:
SALLING_API_KEY=your_key_here
POSTHOG_API_KEY=your_posthog_key_here # optional
Get a Salling API key at developer.sallinggroup.com.
npm install
# HTTP mode (for deployment)
npx tsx mcp-server.ts --http
# Stdio mode (for local Claude Desktop/Code)
npx tsx mcp-server.ts
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.
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.
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.
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.