Skip to main content
Glama
JareCoder

LounasMCP

by JareCoder

LounasMCP

A Model Context Protocol (MCP) server that scrapes daily lunch menus for restaurants located in Kauppakeskus Sello, Espoo from lounaat.info.

Built using the official Anthropic MCP Python SDK's FastMCP and BeautifulSoup4.

Features

  • get_sello_lunch_menus: Retrieve Sello restaurant lunch menus.

    • Parameter: day (optional): Query specific day (keskiviikko, torstai, etc.). Defaults to "today".

  • Flexible Transport: Natively supports both stdio and sse transports.

  • Docker Support: Ready to be packaged and run in a containerized environment (ideal for connecting to LiteLLM).

Related MCP server: mit-dining-mcp

Setup & Running Locally

Installation

Ensure you have Python 3.10+ installed.

# Create and activate virtual environment
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

# Install package
pip install -e .

Running Server

By default, the server runs in stdio mode:

python server.py

To run in SSE mode (web server on port 8000):

python server.py --transport sse --port 8000

Running with Docker

1. Build the Docker Image

docker build -t lounas-mcp .

2. Run Options

Option A: stdio Mode (Direct Command via Docker Exec)

Your MCP client can invoke Docker directly:

docker run -i --rm lounas-mcp --transport stdio

Option B: SSE Mode (HTTP Server)

Expose the HTTP port so other containers or host services can connect via HTTP SSE:

docker run -d --name lounas-mcp -p 8000:8000 lounas-mcp --transport sse --port 8000

Connecting to LiteLLM

To integrate this MCP server with LiteLLM, you can configure the MCP settings depending on how your LiteLLM instance is running.

If your LiteLLM is running in a Docker container, run lounas-mcp in SSE mode (Option B above) on the same network. Then, add it to your LiteLLM configuration:

mcp_servers:
  lounas-mcp:
    type: sse
    url: http://lounas-mcp:8000/sse

(If LiteLLM is running on the host machine and Docker port is mapped, use http://localhost:8000/sse)

Using stdio (If LiteLLM has docker-cli access)

If your LiteLLM server runs locally and can invoke docker directly:

mcp_servers:
  lounas-mcp:
    type: command
    command: docker
    args:
      - run
      - -i
      - --rm
      - lounas-mcp
      - --transport
      - stdio
F
license - not found
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    Provides real-time access to menus from all six MIT Bon Appétit dining halls. It enables users to query daily or weekly schedules and filter options by specific dietary requirements such as vegan, halal, or gluten-free.
    Last updated
    26
    2
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Provides tools to interact with the strava.cz meal ordering system, enabling users to view menus, check and place orders, and manage their canteen account.
    Last updated
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • Finland Open Data (www.avoindata.fi/data/en) CKAN MCP.

  • Unofficial NTNU course data: search, timetables, grades, course info, and exam logistics.

  • Spoonacular food API: recipes, nutrition, ingredients, meal plans. Free 150/day.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/JareCoder/LounasMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server