morgen-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MORGEN_API_KEY | Yes | Morgen API key from platform.morgen.so | |
| MORGEN_ACCOUNT_ID | Yes | Comma-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
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| 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
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
The three tools target clearly distinct resources: accounts, calendars, and events. There is no overlap or ambiguity in their purposes.
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.
Three tools is small but reasonable for a read-only calendar/account server. It feels somewhat thin, but each tool serves a distinct need.
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.