mcp-meeting-rooms
Enables GitHub Copilot to manage meeting rooms including listing, searching availability, booking, and cancelling.
Supports any OpenAI-compatible client to interact with meeting room tools for browsing, searching, and booking.
Provides ready-to-send Slack messages for booking conflicts, including alternative suggestions and swap requests.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-meeting-roomsFind a room for 4 people with a whiteboard today at 2pm"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Meeting Rooms
A Model Context Protocol (MCP) server that gives AI agents the ability to browse, search, and book meeting rooms.
Built with FastMCP, SQLite, and Pydantic. Includes realistic seed data (25 rooms across 3 buildings on a Siemens campus).
Tools
Tool | Description |
| Browse rooms with optional filters (building, floor, capacity, equipment) |
| Find rooms free for a specific date/time slot |
| See bookings and free slots for a room on a given day |
| Reserve a room — returns success or a conflict with alternatives |
| Cancel an existing booking by ID |
| List all bookings for a person, optionally filtered by date |
When a booking conflict occurs, the server returns structured cross_mcp_context with ready-to-send Slack/email messages and swap request payloads — designed for multi-agent workflows.
Related MCP server: Meeting Room MCP Server
Quick Start
# 1. Install dependencies
pip install -e ".[dev]"
# 2. Seed the database
python scripts/seed.py
# 3. Run the MCP server (stdio transport)
python -m meeting_rooms.serverConnect Your AI Client
Remote (hosted — shared database)
The server is hosted on Railway. No local setup needed, no API key required. All remote clients share the same database — a booking made in Copilot is visible in Claude, opencode, ChatGPT, and vice versa.
SSE endpoint:
https://web-production-e9fc5.up.railway.app/sseVS Code / GitHub Copilot
Requires VS Code 1.99+ and the GitHub Copilot extension.
If you cloned this repo — already configured. Skip to step 4.
If you're adding it to an existing project:
Open your project in VS Code
Create
.vscode/mcp.jsonin your project root (or open it if it exists):Windows:
C:\Users\<you>\<project>\.vscode\mcp.jsonmacOS/Linux:
~/projects/<project>/.vscode/mcp.json
Add (or merge into existing
servers):{ "servers": { "meeting-rooms": { "type": "sse", "url": "https://web-production-e9fc5.up.railway.app/sse" } } }Open Copilot Chat — press
Ctrl+Alt+I(Windows/Linux) orCmd+Alt+I(macOS)Switch to Agent mode (dropdown at top of chat panel)
You should see "meeting-rooms" in the tools list. Ask:
"Find me a room for 8 people with a projector tomorrow at 3pm"
Verify it connected: Press Ctrl+Shift+P → type MCP: List Servers → you should see meeting-rooms with status "Running".
Claude Code (CLI)
Option A — Global (available in every project):
claude mcp add meeting-rooms --transport sse --url https://web-production-e9fc5.up.railway.app/sse --scope userThis writes to ~/.claude.json so every Claude Code session can access the meeting rooms server.
Option B — Per-project (only in one directory):
Create or edit .mcp.json in the project root:
{
"mcpServers": {
"meeting-rooms": {
"type": "sse",
"url": "https://web-production-e9fc5.up.railway.app/sse"
}
}
}Then start Claude Code:
claudeClaude will auto-detect the MCP server. Ask:
"List all meeting rooms in the R&D Center"
Verify it connected: Inside Claude Code, type /mcp — you should see meeting-rooms listed with 6 tools.
Claude Desktop
Open the config file for your OS:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonUsually:
C:\Users\<you>\AppData\Roaming\Claude\claude_desktop_config.json
Linux:
~/.config/Claude/claude_desktop_config.json
Add
meeting-roomsto themcpServersobject (create the file if it doesn't exist):{ "mcpServers": { "meeting-rooms": { "type": "sse", "url": "https://web-production-e9fc5.up.railway.app/sse" } } }Restart Claude Desktop (fully quit and reopen — not just close the window)
Click the hammer icon in the chat input — you should see 6 meeting-rooms tools
Ask:
"Book a room for 10 people tomorrow at 2pm"
opencode
Run the MCP add wizard:
opencode mcp addAnswer the prompts:
Location: Global
Name:
meeting-roomsType: Remote
URL:
https://web-production-e9fc5.up.railway.app/sseOAuth: No
Verify it connected:
opencode mcp listYou should see:
meeting-rooms — connectedTest with any model:
opencode run --model "opencode/minimax-m2.5-free" "list all meeting rooms"
Config location: ~/.config/opencode/opencode.json (managed by the CLI — no need to edit manually).
ChatGPT Desktop
Requires ChatGPT desktop app with MCP support enabled.
Open ChatGPT desktop → Settings → Developer (or Beta Features)
Find the MCP servers section and click Add Server
Enter:
Name:
meeting-roomsURL:
https://web-production-e9fc5.up.railway.app/sse
Save and start a new chat. Ask:
"What rooms are available tomorrow morning?"
CLI (bash)
No AI client needed — call tools directly from the terminal.
Requires: python3 and httpx (pip install httpx)
# List all rooms
./cli.sh list_rooms
# Filter by building
./cli.sh list_rooms '{"building": "R&D Center"}'
# Find available rooms
./cli.sh search_available_rooms '{"date": "2026-04-25", "start_time": "09:00", "end_time": "10:00"}'
# Book a room
./cli.sh book_room '{"room_id": 3, "date": "2026-04-25", "start_time": "14:00", "end_time": "15:00", "booked_by": "nir@example.com", "title": "Standup"}'
# Check room schedule
./cli.sh get_room_availability '{"room_id": 5, "date": "2026-04-25"}'
# My bookings
./cli.sh my_bookings '{"booked_by": "nir@example.com"}'
# Cancel
./cli.sh cancel_booking '{"booking_id": 12}'Override the server URL with MCP_URL:
MCP_URL=http://localhost:8000 ./cli.sh list_roomsAny OpenAI-compatible client
Any MCP client that supports SSE transport can connect. Point it to:
https://web-production-e9fc5.up.railway.app/sseNo API key or authentication required. The server follows the standard MCP protocol.
Local (your machine only — separate database)
These options run the server on your machine via stdio. Bookings made locally stay local — they do not sync with the hosted server or other machines.
Setup
git clone <this-repo>
cd mcp-meeting-rooms
pip install -e ".[dev]"
python scripts/seed.pyLocal stdio with any AI client
Add to your client's MCP config (.mcp.json, claude_desktop_config.json, .vscode/mcp.json, etc.):
{
"mcpServers": {
"meeting-rooms": {
"type": "stdio",
"command": "python",
"args": ["-m", "meeting_rooms.server"],
"env": {
"PYTHONPATH": "src"
}
}
}
}MCP Inspector (browser UI)
A visual interface where you can browse tools, fill in parameters, and see responses — no AI client or JSON needed.
Requires: Node.js (for npx)
Launch the inspector:
./inspect.shThis runs
npx @modelcontextprotocol/inspectorand starts the MCP server locally via stdio.Open the URL printed in the terminal (usually
http://localhost:5173)Click Connect — the server is pre-configured, no command or arguments to fill in
Browse the Tools tab — click any tool, fill in the form, and hit Run
Raw stdio (testing)
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}
{"jsonrpc":"2.0","method":"notifications/initialized"}
{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_rooms","arguments":{"min_capacity":10}}}' \
| python -m meeting_rooms.serverSee AGENTS.md for the full tool reference and more example calls.
Run Tests
pytestProject Structure
src/meeting_rooms/
├── server.py # FastMCP server — tool registration & transport
├── tools.py # Business logic for each tool
├── repository.py # Data access layer (SQL queries)
├── models.py # Pydantic models
├── db.py # SQLite connection & schema init
scripts/
└── seed.py # Siemens campus seed data (3 buildings, 25 rooms)
tests/
├── conftest.py # Shared fixtures
└── test_repository.pyEnvironment Variables
Variable | Default | Description |
|
| Path to the SQLite database file |
|
| Transport mode: |
|
| Host to bind when using SSE transport |
|
| Port to listen on (Railway injects this automatically) |
Known Limitations
SQLite is per-instance. Local stdio uses a file on your machine. The Railway deployment uses a persistent volume. Bookings don't sync between them.
No authentication. The SSE endpoint is open — anyone with the URL can book and cancel rooms. Fine for a demo, not for production.
No concurrent write scaling. SQLite serializes writes via
BEGIN IMMEDIATE. Reads are fully concurrent, but heavy write loads (100+ simultaneous bookings) will queue up. Adequate for ~50 concurrent users.
Equipment Tags
whiteboard, projector, video_conf, phone
The equipment filter is an AND — every listed tag must be present on the room.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/8bkmv4dm4z-source/mcp-meeting-rooms'
If you have feedback or need assistance with the MCP directory API, please join our Discord server