Skip to main content
Glama
Pozzitron1337

fridge-mcp

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
FRIDGE_DATA_PATHNoPath to the fridge data file (default: data/fridge.json)
MCP_ACCESS_TOKENNoAccess token for HTTP server authentication

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

CapabilityDetails
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_fridgeA

Показывает всё содержимое холодильника: продукты, количество, место и срок годности.

add_to_fridgeA

Добавляет продукт в холодильник. Если такой уже есть — увеличивает количество.

remove_from_fridgeA

Убирает продукт из холодильника (съели / выкинули). Без quantity убирает всё.

check_fridge_itemA

Проверяет, есть ли конкретный продукт в холодильнике.

expiring_soonA

Список продуктов, у которых скоро закончится срок годности (включая уже просроченные).

Prompts

Interactive templates invoked by user choice

NameDescription
whats_for_dinnerПодсказывает блюдо из того, что есть в холодильнике

Resources

Contextual data attached and managed by the client

NameDescription
fridge-contentsТекущий список продуктов в холодильнике

TDQS

A4.1/5.0

Scored across 5 tools

Disambiguation5/5

Each tool performs a distinct operation: listing all items, adding, removing, checking existence, and getting expiring items. There is no meaningful overlap between them, and even the similar list/check pair is clearly differentiated by scope.

Naming Consistency5/5

All tool names use consistent snake_case with clear verb-first patterns (list_, add_, remove_, check_) plus the query-style expiring_soon. The naming style is uniform and predictable.

Tool Count5/5

With 5 tools, the server is well-scoped for a fridge inventory domain. Each tool serves a core need without bloat, making the set easy to navigate and use.

Completeness4/5

The set covers the main lifecycle: add (create), list/check/expiring (read), and remove (delete). The only notable gap is the lack of an update operation for product details like expiration date, which can be worked around by re-adding.

Maintenance

ActivityStale
ResponsivenessNo issues