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., "@DiSH MCP ServerFind a room for a 1-hour meeting tomorrow at 2 PM."
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.
DiSH MCP Server
A Model Context Protocol (MCP) server for the DiSH room booking site. It exposes tools to check availability, book rooms, and cancel bookings so assistants like Cursor or Claude can manage your reservations.
What it can do
Search room availability across your DiSH locations
Create bookings on your behalf
Cancel or reschedule existing bookings
Pair with calendar tools (e.g., Google Calendar MCP) to coordinate bookings with your calendar availability.
Example prompts:
"Book meeting rooms for all my standups this week."
"Reschedule my 1-1 with John to tomorrow afternoon when we’re both free and a room is open."
"Book a meeting room for all my customer demos for the next 2 months."
Requirements
Python 3.10+
uvfor dependency management
Setup
Configuration
The server needs three environment variables:
DISH_COOKIE— your DiSHconnect.sidsession cookieTEAM_ID— your DiSH team IDMEMBER_ID— your DiSH member ID
Automatic credential retrieval (recommended)
The easiest way to get your credentials is to use the included script:
This will:
Open a browser window for you to log in to DiSH
Automatically detect when you've reached the dashboard
Capture your cookie, team ID, and member ID
Save them to your
.envfile
Manual credential retrieval
If the automatic method doesn't work, you can retrieve credentials manually:
Getting your connect.sid cookie
Log in to DiSH in your browser.
Open Developer Tools (F12 / Cmd+Option+I).
In Application/Storage > Cookies, select the DiSH domain.
Copy the
connect.sidvalue (looks likes%3A...).In your
.envfile, setDISH_COOKIEtoconnect.sid=<value>.
Getting your team and member IDs
Log in to DiSH in your browser.
Open Developer Tools (F12 / Cmd+Option+I).
In the Network tab, find a request to
occurrences(orbooking-policy).In the request URL or payload, look for the
teamandmembervalues.In your
.envfile, setTEAM_IDandMEMBER_IDto the respective values.
Keep this secret. Do not commit cookies, team IDs, member IDs, or .env files to source control. Regenerate the cookie if it stops working or was ever exposed.
Run the MCP server
Configure your client
Cursor
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
The cookie expires periodically. Run
uv run src/get_credentials.pyto get fresh credentials if authentication fails.