Mensa TUD MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_canteensA | List all available canteens from the Studentenwerk Dresden. Returns canteen IDs, names, addresses, and coordinates for all available canteens. |
| list_canteen_daysA | List all days for which a canteen has meal data available. Args: canteen_id: The ID of the canteen to query (e.g., 9 for Alte Mensa) Returns dates for which you can query meals. |
| get_mealsA | Get all meals available at a specific canteen on a specific date. Notes:
Args: canteen_id: The ID of the canteen to query (e.g., 9 for Alte Mensa) date: The date in YYYY-MM-DD format (e.g., 2026-01-13). If not provided, uses today's date. Returns meal names, categories, prices, and dietary information. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: listing canteens, listing available days for a canteen, and getting meals for a specific canteen and date. No overlap or ambiguity.
Two tools use the 'list_' prefix while one uses 'get_', creating a minor inconsistency. However, the verb-noun pattern is consistent and all names are descriptive.
With 3 tools, the set is well-scoped for a canteen query system, covering all necessary operations without unnecessary bloat.
The tools cover the full workflow: discover canteens, check available days, and retrieve meals with dietary info. No obvious gaps for the intended use case.