Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MORGEN_API_KEYYesMorgen API key from platform.morgen.so
MORGEN_ACCOUNT_IDYesComma-separated list of account IDs to fetch events from

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_accountsA

List all connected Morgen accounts and their IDs.

list_calendarsA

List calendars across all accounts, optionally filtered by account_id.

get_eventsA

Fetch events for a given date (YYYY-MM-DD). Defaults to today if empty.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.1/5.0

Scored across 3 tools

Disambiguation5/5

The three tools target clearly distinct resources: accounts, calendars, and events. There is no overlap or ambiguity in their purposes.

Naming Consistency5/5

All tool names follow a consistent list_<resource> pattern: list_accounts, list_calendars, get_events. The slight verb difference (list vs get) is still coherent and predictable.

Tool Count4/5

Three tools is small but reasonable for a read-only calendar/account server. It feels somewhat thin, but each tool serves a distinct need.

Completeness2/5

The toolkit is entirely read-only: it can list accounts, list calendars, and fetch events, but cannot create, update, delete, or otherwise mutate any calendar data. For a general Morgen integration, this leaves significant gaps.