iris
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| IRIS_DISABLED | No | Set to '1' to disable all tools. | |
| IRIS_ALLOWLIST | No | Path to recipients.allow file. | |
| IRIS_AUDIT_LOG | No | Path to audit log file. | |
| IRIS_CLIENT_ID | Yes | Application (client) ID from Entra app registration. | |
| IRIS_TENANT_ID | Yes | Directory (tenant) ID from Entra app registration. | |
| IRIS_ENABLE_SEND | No | Set to '1' to enable sending (requires Mail.Send scope and re-consent). | |
| IRIS_DRAFT_FOLDER | No | Default folder for drafts (default 'AI Drafts'). |
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 |
|---|---|
| iris_loginA | Start a device-code sign-in for the mailbox. Returns a URL and a code for the human to enter in a browser; then call iris_login_finish() to complete. Only needed once, or after the refresh token lapses. |
| iris_login_finishA | Complete a device-code sign-in started with iris_login(). Call after entering the code in the browser. Waits up to ~60s; if the code has not been entered yet, it says so and can simply be called again. |
| iris_auth_statusA | Report whether iris is signed in, as whom, and with what scopes. |
| iris_create_draftA | Compose a message into a mail folder as an unsent draft. It is NOT sent — a human opens Outlook and presses Send. folder selects the destination folder by display name, created on first use if absent. Omit it to use the configured default (IRIS_DRAFT_FOLDER, currently "AI Drafts"); pass "" or "Drafts" for the normal Outlook Drafts folder. Set reply_to_message_id to draft a threaded reply. |
| iris_list_draftsA | List recent messages sitting in a draft folder. folder selects which one by display name; omit it for the configured default (IRIS_DRAFT_FOLDER), or pass "" / "Drafts" for the normal Outlook Drafts folder. |
| iris_list_foldersA | List the mailbox's top-level mail folders (name, id, unread/total counts)
so you can pick one to pass as the |
| iris_update_draftA | Revise an existing draft in place. Only the fields you pass are changed. |
| iris_delete_draftA | Delete a draft. Destructive, so confirm=true is required — set it only after the human has explicitly approved deleting this specific draft. |
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 has a clearly distinct purpose: login steps, auth status, and CRUD operations on drafts. There is no ambiguity between them; even the two login tools are sequentially distinct with clear descriptions.
All tools follow a consistent iris_ prefix followed by verb_noun naming (e.g., iris_create_draft, iris_list_folders). The pattern is uniform and predictable.
8 tools is well-scoped for the domain of draft management and authentication. Each tool serves a necessary function without redundancy or bloat.
The tool set covers the full draft lifecycle (create, list, update, delete) plus necessary folder listing and authentication flow. There are no obvious missing operations for the stated purpose.