Partelisto MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| Gateway__BaseUrl | Yes | The base URL of the api-gateway service that this server forwards requests to (e.g. http://localhost:5201). Required for the server to function. | |
| Keycloak__Authority | Yes | The Keycloak realm authority URL used for JWT token validation (e.g. https://keycloak.example.com/realms/partelisto). Required for the server to start. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_bookingA | Creates a new booking (a check-in workflow) for one of the host's properties. Requires the write permission granted separately during sign-in. Ask the host to confirm the property and dates before calling this. Does not email the guest — call send_guest_checkin_link afterwards if a link should go out now. |
| send_guest_checkin_linkA | Sends (or resends) the guest check-in link by email for a booking the host owns. This is a real action with a side effect: it emails the guest and, on resend, invalidates the guest's previous link. Requires the write permission granted separately during sign-in. Ask the host to confirm before calling this. |
| list_ses_statusesA | SES.HOSPEDAJES (police registration) submission status for a set of bookings the host owns: status, attempts, last error, and the official reference once accepted. Bookings with no submission yet are omitted. |
| get_guest_form_statusA | Whether the guest has completed the check-in form for a booking the host owns (None or Submitted). No form content. |
| list_bookingsA | Lists the signed-in host's bookings (newest first), paged. Returns id, property id, check-in/check-out dates, status, and whether a check-in link and guest contact exist — never the guest's email, phone, or documents. |
| get_attention_requiredA | Scans the signed-in host's most recent bookings (up to 50) and returns only what needs action right now: stays that are imminent or under way where the guest has not completed check-in, and bookings whose SES.HOSPEDAJES submission failed. Empty list means nothing needs attention within the window. No guest PII. |
| list_propertiesA | Lists the signed-in host's properties: id, name, address, municipality/province, and whether it is archived. No guest data. |
| get_usage_summaryA | The signed-in host's plan tier, trial status, and this month's usage against plan limits (properties, templates, bookings). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool targets a distinct resource or action: usage/plan, bookings, guest link sending, police registration status, guest form status, and properties. Aggregating tools like get_attention_required clearly complement rather than duplicate the individual status-checking tools.
All tool names use lowercase snake_case with a consistent verb-first pattern: get_, list_, create_, send_. The naming is uniform and predictable, making it easy to infer each tool's purpose from its name alone.
Eight tools is well-scoped for a check-in workflow MCP server. Each tool covers a meaningful operation without redundancy, and the count feels neither thin nor bloated.
The core workflow is well covered: create a booking, send a check-in link, check guest form completion, check police registration status, and get an attention-required summary. Minor gaps exist around booking updates/cancellations and property management, but these appear outside the server's stated focus.