Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
AUTH_MODE | No | Authentication mode: 'interactive' (default), 'client_credentials', or 'client_provided_token' | interactive |
CLIENT_ID | No | Azure AD Application (Client) ID | |
TENANT_ID | No | Azure AD Tenant ID | common |
USER_EMAIL | No | Email address of the user whose calendar to access | |
ACCESS_TOKEN | No | Pre-acquired access token | |
REDIRECT_URI | No | Custom redirect URI | http://localhost |
CLIENT_SECRET | No | Azure AD Application Client Secret | |
TOKEN_EXPIRES_ON | No | Token expiration date in ISO format (e.g., 2025-10-03T12:00:00Z) |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
find-person | Find a person's email address by their name |
create-event | Create a calendar event using Microsoft Graph API |
create-event-with-attendees | Create a calendar event with attendees using Microsoft Graph API |
get-event | Get details of a calendar event by its ID |
list-events | List calendar events with optional filtering |
update-event | Update an existing calendar event |
update-event-attendees | Add or remove attendees from a calendar event |
delete-event | Delete a calendar event |