Mensa TUD MCP Server logo

Mensa TUD MCP Server

ScaDS/mensa-tud-mcp
0 starsMITUpdated 2026-01-13Community

Is this your server?

Add your score badge to your README and get your server in front of 45k+ builders a month.

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server for accessing the TU Dresden canteen API. It provides tools to query canteen information, available days, and daily meal menus.

README.md

Mensa TUD MCP Server

An MCP (Model Context Protocol) server for accessing the TU Dresden canteen API (Studentenwerk Dresden). This server provides tools to query canteen information, available days, and daily meal menus through the OpenMensa v2 API.

You can access it, e.g. via the jan.ai GUI or using Claude Desktop.

![](docs/images/teaser.png)

Features

This MCP server provides three tools:

  1. list_canteens - List all available canteens with their IDs, names, addresses, and coordinates
  2. list_canteen_days - List all days for which a specific canteen has meal data available
  3. get_meals - Get all meals available at a specific canteen on a specific date (defaults to today)

Installation

  1. Install uv (fast Python package manager)
  1. The dependencies will be automatically installed by uv when running the server

Integrating with GUIs

To use this MCP server e.g. with Claude Desktop, add it to your Claude Desktop configuration file:

On Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the following to your configuration:

{
  "mcpServers": {
    "mensa-tud": {
        "command": "uv",
        "args": [
        "--directory",
        "path\\to\\mensa-tud-mcp",
        "run",
        "server.py"
        ]
    }
  }
}

Make sure to adjust the path to match your installation location. In jan.ai you can enter this information under Settings > MCP Servers.

Under the hood

This server uses the OpenMensa v2 API provided by Studentenwerk Dresden:

  • Base URL: https://api.studentenwerk-dresden.de/openmensa/v2
  • Documentation: OpenMensa API

License

This is a simple MCP server implementation for educational and personal use provided unter MIT License.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.