MCP Family Kiosk Display

MCP Family Kiosk Display

An MCP server that provides LLM-controlled kiosk display tools for family management, supporting animated scenes with text, images, and videos. It enables real-time updates via WebSocket and offers high-level tools for calendars, chores, meal plans, and announcements through both stdio and HTTP transports.

Category
Visit Server

README

MCP Family Kiosk Display

A polished, animated kiosk display that can be controlled by an LLM through MCP tool calls.

What this provides

  • MCP server over stdio with kiosk control tools
  • HTTP kiosk display endpoint at http://localhost:8787
  • Real-time updates via WebSocket (/ws)
  • Large readable typography and smooth animated transitions
  • Support for mixed scene elements: text, images, and videos
  • Overlay announcements for urgent family updates
  • Auto-advancing playlist mode for unattended display rotation

MCP integrations

The server supports two MCP transports:

  1. Stdio (default) — for LLM clients that use stdio-based MCP
  2. HTTP streaming — for tools like n8n, Zapier, or custom integrations

Stdio transport

Standard MCP over stdin/stdout. Used by most LLM clients as a subprocess.

HTTP streaming transport

call MCP tools from n8n or any HTTP client.

  • GET /mcp/tools — list all available tools
  • POST /mcp/call — invoke a tool (JSON response)
  • POST /mcp/stream — invoke a tool (Server-Sent Events response)

Example: n8n HTTP POST to /mcp/call

{
  "tool": "kiosk_show_chores",
  "arguments": {
    "dueToday": ["Dishes", "Homework", "Vacuum living room"],
    "done": ["Breakfast prep", "Make beds"],
    "points": ["Jane: 12 pts", "Max: 8 pts"],
    "theme": "party"
  }
}

Response:

{
  "ok": true,
  "message": "Chore dashboard rendered",
  "state": { /* full kiosk state */ }
}

Run locally

  1. Install dependencies
  2. Start the server
  3. Open kiosk display in browser

The server process hosts both:

  • MCP tool interface (stdio)
  • Display web server (http://localhost:8787)

Example scene payload for kiosk_set_playlist

Use this shape from your LLM client:

  • title, subtitle
  • theme: aurora | sunrise | ocean | midnight | party
  • transition: slide | fade | zoom
  • autoAdvance, autoAdvanceSec
  • scenes[]
    • title, subtitle, accent, durationSec
    • elements[]
      • type: text with heading, body
      • type: image with url, optional caption
      • type: video with url, optional caption, and booleans muted, autoplay, loop

High-level family workflow tools

For most home-assistant use cases, prefer these tools over raw playlist JSON:

  • kiosk_show_calendar
    • Inputs: dayLabel, events[], now, next, highlight
    • events[] accepts either simple strings or objects with when, time, label
  • kiosk_show_chores
    • Inputs: dueToday[], done[], points[]
  • kiosk_show_meal_plan
    • Inputs: breakfast, lunch, dinner, prep[], shopping[]
  • kiosk_show_school_run
    • Inputs: leaveBy, weather, checklist[], reminders[]
  • kiosk_announce
    • Inputs: message (required), details[], emoji, showOverlay

Each of the tools above also supports optional visual controls:

  • title, subtitle
  • theme: aurora | sunrise | ocean | midnight | party
  • transition: slide | fade | zoom
  • autoAdvance, autoAdvanceSec

MCP client wiring

Use mcp.client.example.json as a reference for your MCP host configuration.

Customization ideas

  • Pipe in family calendar data from Home Assistant
  • Add weather and transit cards as text elements
  • Display chore boards and rotating reminders
  • Build holiday themes by switching theme and scene media

Notes

  • Keep media URLs publicly accessible by the kiosk browser.
  • For local/private media, serve files from public/ and reference relative paths.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured