Skip to main content
Glama
shrey715

Mess MCP Server

create_monthly_registration

Enroll in a mess for a full calendar month using month, year, and mess ID, so your dining registration is set up in one step.

Instructions

Enrol in a mess for an entire calendar month.

Args: month: Month number (1-12). year: Year (YYYY). mess_id: Mess identifier, e.g. 'yuktahar'. api_key: API key. Falls back to MESS_API_KEY environment variable.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearYes
monthYes
api_keyNo
mess_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral burden. It usefully discloses the api_key fallback to MESS_API_KEY, but it does not mention side effects such as billing commitment, idempotency, whether an existing registration is overwritten or rejected, or any destructive implications.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The purpose is front-loaded in a single clear sentence, followed by a compact args list with no fluff. Every line earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is complete enough for basic invocation since all parameters are documented and an output schema exists. However, with no annotations and a mutating action, it lacks operational context such as behavior on duplicate registration, whether enrollment depends on capacity windows, and whether it can be undone via a sibling.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must document the parameters itself. It does so thoroughly for all four: month range (1-12), year format (YYYY), mess_id example ('yuktahar'), and api_key fallback behavior. This is exactly the added meaning an agent needs beyond the bare schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The first line states a specific action and resource: enrol in a mess for an entire calendar month. The explicit monthly scope distinguishes it from per-meal siblings like register_meal and read-only siblings like get_monthly_registration or delete_monthly_registration.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance is given about when to choose this tool over alternatives, nor any exclusions or prerequisites. The purpose is implied, but an agent is not told to check for an existing monthly registration first or to use a sibling for daily meal registration.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.