bluemind-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| BLUEMIND_URL | Yes | Server URL, e.g. https://mail.example.com | |
| BLUEMIND_EMAIL | Yes | User login (email address) | |
| BLUEMIND_PASSWORD | Yes | Password | |
| BLUEMIND_ALLOW_INSECURE_TLS | No | Optional: '1' to accept self-signed certificates |
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
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_mail_foldersA | List the mail folders (INBOX, Sent, ...) of the BlueMind mailbox, with their uid and full name. |
| search_emailsA | Full-text search of emails in the BlueMind mailbox. The query uses Elasticsearch query_string syntax: plain words search the message body, and fields can be targeted, e.g. subject:report, from:alice, to:bob@example.org, has:attachments, is:unread — combinable with AND/OR (e.g. subject:réunion AND from:pierre). By default all folders are searched; restrict with folder_uid or folder_name. Returns folder_uid + item_id usable with read_email. |
| list_recent_emailsA | List the most recent emails of a folder (default INBOX), newest first. Returns folder_uid + item_id usable with read_email. |
| read_emailA | Read the full content of an email (headers, text body, attachment list) given its folder_uid and item_id (from search_emails or list_recent_emails). |
| list_calendarsA | List the BlueMind calendars accessible to the user, with their uid (usable with search_events / list_events). |
| search_eventsA | Search calendar events by text (summary, description, location, attendees), optionally within a date range. Defaults to the user's default calendar. |
| list_eventsA | List calendar events in a date range (agenda view). Defaults to the user's default calendar. Recurring events are returned as series with their recurrence rule; occurrences inside the range may need expanding from the rule. |
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 7 tools
Most tools target distinct resources/actions, with clear separation between email and calendar. The only mild ambiguity is search_events vs list_events, but their descriptions (text search vs date-range agenda) differentiate them adequately.
All tool names follow a consistent snake_case verb_noun pattern: list_*, search_*, read_*. This makes the toolset predictable and easy to navigate.
Seven tools is a well-scoped size for an email and calendar access server. Each tool covers a distinct read-oriented operation without unnecessary redundancy.
The toolset is heavily read-only: it can list, search, and read emails and calendar events, but offers no send/delete/move email operations and no create/update/delete calendar event operations. For a general BlueMind server, these are significant missing capabilities unless the server is explicitly intended to be read-only.