Fastmail Calendar MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Fastmail Calendar MCP Servershow me my calendar events for tomorrow"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Fastmail Calendar MCP Server
An MCP (Model Context Protocol) server that enables AI assistants to interact with Fastmail Calendar via CalDAV. This allows AI to view, create, modify, and delete calendar events in your Fastmail account.
Features
List Calendars: View all calendars in your Fastmail account
List Events: Retrieve events from a specific calendar within a date range
Create Events: Add new calendar events with details like title, description, location, and time
Update Events: Modify existing calendar events
Delete Events: Remove calendar events
Related MCP server: Google Calendar MCP
Configuration
This MCP server requires the following configuration:
username: Your Fastmail email address (e.g.,
user@fastmail.com)appPassword: A Fastmail app password (16 characters)
Creating a Fastmail App Password
Log in to Fastmail
Go to Settings → Privacy & Security → Integrations
Click New app password
Select permissions (ensure "Calendars" is included)
Click Generate password
Copy the generated password (16 characters)
Installation
Via Smithery
smithery install fastmail-calendar-mcp --client claude --config '{"username":"your-email@fastmail.com","appPassword":"your-app-password"}'Manual Installation for Claude Desktop
Add to your Claude Desktop config file (~/.config/claude/claude_desktop_config.json):
{
"mcpServers": {
"fastmail-calendar": {
"command": "npx",
"args": [
"-y",
"fastmail-calendar-mcp"
],
"env": {
"FASTMAIL_USERNAME": "your-email@fastmail.com",
"FASTMAIL_APP_PASSWORD": "your-app-password"
}
}
}
}For Cursor IDE
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"fastmail-calendar": {
"command": "node",
"args": ["/path/to/fastmail-calendar-mcp/dist/index.js"],
"env": {
"FASTMAIL_USERNAME": "your-email@fastmail.com",
"FASTMAIL_APP_PASSWORD": "your-app-password"
}
}
}
}Development
Setup
npm install
npm run buildRunning Locally
export FASTMAIL_USERNAME="your-email@fastmail.com"
export FASTMAIL_APP_PASSWORD="your-app-password"
npm startDevelopment Mode
npm run devThis will watch for changes and automatically rebuild.
Deploying to Smithery
Push this repository to GitHub
Go to smithery.ai
Click Deploy
Select your GitHub repository
Smithery will automatically detect the TypeScript MCP project and deploy it
Available Tools
list_calendars
Lists all calendars in your Fastmail account.
Returns: Array of calendar objects with displayName, url, description, and timezone.
list_events
Lists events from a specific calendar within a date range.
Parameters:
calendarUrl(required): The URL of the calendarstartDate(required): Start date in ISO format (e.g., "2024-01-01")endDate(required): End date in ISO format (e.g., "2024-12-31")
Returns: Array of event objects with url, etag, and data (iCalendar format).
create_event
Creates a new calendar event.
Parameters:
calendarUrl(required): The calendar URL where the event will be createdsummary(required): Event titlestartDate(required): Event start date/time in ISO formatendDate(required): Event end date/time in ISO formatdescription(optional): Event descriptionlocation(optional): Event location
Returns: Success message with the created event URL.
update_event
Updates an existing calendar event.
Parameters:
eventUrl(required): The URL of the event to updatesummary(optional): New event titledescription(optional): New event descriptionstartDate(optional): New start date/time in ISO formatendDate(optional): New end date/time in ISO formatlocation(optional): New event location
Returns: Success message.
delete_event
Deletes a calendar event.
Parameters:
eventUrl(required): The URL of the event to deleteetag(required): The etag of the event (obtained fromlist_events)
Returns: Success message.
Example Usage
Once installed, you can ask your AI assistant:
"List my Fastmail calendars"
"Show me my calendar events for next week"
"Create a meeting on December 15th at 2 PM titled 'Team Sync'"
"Update the 'Team Sync' event to include a Zoom link in the description"
"Delete the event with URL [event-url]"
Security Notes
Never commit your Fastmail app password to version control
Use environment variables or secure secret management
App passwords are safer than your main Fastmail password
You can revoke app passwords at any time from Fastmail settings
License
MIT
Available Tools
6 toolscreate_eventA
Create a new calendar event. PREREQUISITE: You must first call list_calendars to get the calendarUrl. Creates an event with the specified title, times, and optional description/location.
| Name | Required | Description | Default |
|---|---|---|---|
| calendarUrl | Yes | REQUIRED. The calendar URL from list_calendars output where the event will be created. | |
| summary | Yes | REQUIRED. The event title. Example: 'Team Meeting', 'Doctor Appointment', 'Lunch with Sarah' | |
| description | No | Optional. Detailed notes or agenda for the event. | |
| startDate | Yes | REQUIRED. Event start in ISO format. Example: '2024-12-15T10:00:00Z' for 10 AM UTC | |
| endDate | Yes | REQUIRED. Event end in ISO format. Must be after startDate. Example: '2024-12-15T11:00:00Z' for 11 AM UTC | |
| location | No | Optional. Where the event takes place. Example: 'Conference Room A', 'https://zoom.us/j/123', '123 Main St' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=false, destructiveHint=false, idempotentHint=false, and openWorldHint=false, so the agent knows this is a non-destructive, non-idempotent write operation. The description adds useful context about the prerequisite (list_calendars) and what fields are created, but doesn't disclose additional behavioral traits like error conditions, rate limits, or authentication requirements beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured in two sentences: the first states the purpose, the second provides prerequisite and parameter overview. Every sentence earns its place with essential information, and it's appropriately front-loaded with the core functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a creation tool with no output schema, the description provides good context about prerequisites and parameters. However, it doesn't describe what happens on success (e.g., returns event ID) or failure scenarios. Given the 6 parameters and mutation nature, slightly more behavioral context would be helpful, but the prerequisite guidance is strong.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with each parameter clearly documented in the schema. The description adds marginal value by summarizing the parameters ('title, times, and optional description/location') and mentioning the calendarUrl prerequisite, but doesn't provide additional semantic context beyond what's already in the well-documented schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Create a new calendar event') and resource ('calendar event'), distinguishing it from siblings like delete_event, update_event, get_event_details, and list_events. It specifies the core functionality of creating events with title, times, and optional fields.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly provides a prerequisite ('You must first call list_calendars to get the calendarUrl') and distinguishes when to use this tool versus alternatives by naming the specific prerequisite tool. This gives clear guidance on the required sequence of operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_eventADestructiveIdempotent
PERMANENTLY DELETE an event. PREREQUISITE: You must first call list_calendars, then list_events to get both the eventUrl AND etag. WARNING: This cannot be undone. Always confirm with the user before deleting.
| Name | Required | Description | Default |
|---|---|---|---|
| eventUrl | Yes | REQUIRED. The event URL from list_events output. | |
| etag | Yes | REQUIRED. The etag from list_events output. This prevents accidentally deleting a modified event. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
While annotations already indicate destructiveHint=true and idempotentHint=true, the description adds crucial behavioral context: it explicitly states 'This cannot be undone' (reinforcing destructiveness), explains the purpose of the etag parameter ('prevents accidentally deleting a modified event'), and provides workflow prerequisites. This goes well beyond what annotations provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly structured with three distinct, front-loaded components: the core action in all caps, prerequisites, and warnings. Every sentence earns its place by providing essential information without redundancy. It's brief yet comprehensive for a dangerous operation.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive tool with no output schema, the description provides complete context: it explains the irreversible nature, prerequisites, confirmation requirement, and parameter sourcing. Given the high-stakes nature of deletion and the comprehensive annotations, this description leaves no critical gaps for the agent to understand when and how to use this tool safely.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 100% schema description coverage, the baseline is 3. The description adds value by explaining why both parameters are needed ('You must first call list_calendars, then list_events to get both the eventUrl AND etag') and providing context about their source, which helps the agent understand the required workflow beyond just parameter definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('PERMANENTLY DELETE') and resource ('an event'), distinguishing it from sibling tools like create_event, update_event, and get_event_details. It uses strong, unambiguous language that leaves no doubt about the tool's function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit prerequisites ('You must first call list_calendars, then list_events to get both the eventUrl AND etag') and clear warnings about when to use it ('Always confirm with the user before deleting'). It also implicitly distinguishes from alternatives like update_event by emphasizing the irreversible nature of deletion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_event_detailsARead-onlyIdempotent
Get parsed details of a specific event. PREREQUISITE: You must first call list_calendars, then list_events to get the eventUrl. Returns structured event data (title, start, end, location, description) instead of raw iCalendar format.
| Name | Required | Description | Default |
|---|---|---|---|
| eventUrl | Yes | REQUIRED. The event URL from list_events output. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is a read-only, non-destructive, idempotent operation with a closed world. The description adds valuable context beyond annotations by specifying the prerequisite calls needed and that it returns structured data instead of raw format, which helps the agent understand behavioral constraints not covered by annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose, followed by prerequisite information and output clarification. Every sentence adds value—none are redundant or verbose—making it efficiently structured and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only tool with good annotations and a simple parameter schema, the description is largely complete. It covers purpose, prerequisites, and output format. However, without an output schema, it could benefit from more detail on the structured data fields (e.g., explicitly listing title, start, end, location, description) to fully compensate for the missing output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the eventUrl parameter clearly documented as required and sourced from list_events output. The description reinforces this by mentioning the prerequisite to get the eventUrl from list_events, but doesn't add significant semantic detail beyond what the schema already provides. Baseline 3 is appropriate given high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Get parsed details') and resource ('a specific event'), distinguishing it from siblings like list_events (which lists events) or create_event (which creates events). It explicitly mentions returning structured event data instead of raw iCalendar format, adding further differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit prerequisites ('You must first call list_calendars, then list_events to get the eventUrl') and clarifies when to use this tool versus alternatives by specifying it's for getting details of a specific event after identifying it through list_events. This gives clear operational context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_calendarsARead-onlyIdempotent
STEP 1 - ALWAYS CALL THIS FIRST. Lists all calendars in the user's Fastmail account. Returns an array of calendars with displayName (human-readable name like "Work", "Personal", "Family"), url (required for other operations), and timezone. You MUST call this before list_events, create_event, update_event, or delete_event to get the calendar URL. Look at the displayName to identify which calendar the user wants (e.g., "Work" for work schedule, "Personal" for personal events).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover safety (readOnlyHint: true, destructiveHint: false) and idempotency, but the description adds valuable behavioral context: that this returns an array with specific fields (displayName, url, timezone), that the URL is required for other operations, and practical interpretation guidance. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Well-structured with clear step-by-step guidance, but slightly verbose with repetition of 'calendar' and could be more front-loaded. Every sentence adds value, but some phrasing could be tighter.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool with comprehensive annotations, the description provides complete context: clear purpose, explicit prerequisites, output structure explanation, and practical usage guidance. No output schema exists, so the description appropriately explains what's returned.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0 parameters and 100% schema description coverage, the baseline is 4. The description appropriately doesn't discuss parameters since none exist, focusing instead on output semantics and usage context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Lists all calendars') and resource ('in the user's Fastmail account'), and distinguishes it from siblings by explaining its prerequisite role for other calendar operations. It provides concrete examples of calendar types like 'Work' and 'Personal'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use this tool ('ALWAYS CALL THIS FIRST' before list_events, create_event, update_event, or delete_event) and why (to get the calendar URL). It also provides guidance on how to interpret results ('Look at the displayName to identify which calendar the user wants').
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_eventsARead-onlyIdempotent
STEP 2 - Get events from a calendar. PREREQUISITE: You must first call list_calendars to get the calendarUrl. Returns events within the specified date range. Each event contains: url (needed for update/delete), etag (needed for delete), and data (iCalendar format with SUMMARY=title, DTSTART=start time, DTEND=end time, LOCATION, DESCRIPTION). Parse the iCalendar data to show event details to the user.
| Name | Required | Description | Default |
|---|---|---|---|
| calendarUrl | Yes | REQUIRED. The calendar URL from list_calendars output. Example: 'https://caldav.fastmail.com/dav/calendars/user/example@fastmail.com/default/' | |
| startDate | Yes | REQUIRED. Start of date range in ISO format. For today: use current date. Example: '2024-12-01' or '2024-12-01T00:00:00Z' | |
| endDate | Yes | REQUIRED. End of date range in ISO format. For a single day, use the next day. Example: '2024-12-02' or '2024-12-31T23:59:59Z' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, non-destructive, and idempotent behavior, but the description adds valuable context about the return format (iCalendar data with specific fields like url, etag, and data) and parsing instructions, which goes beyond what annotations provide without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Front-loaded with the core purpose and prerequisite, followed by return details and parsing instructions. The sentences are efficient, but the description could be slightly more streamlined by integrating some details (e.g., the parsing note might be condensed).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of an output schema, the description compensates by detailing the return structure (url, etag, data) and iCalendar format, which is essential for understanding the tool's output. However, it doesn't mention potential limitations like pagination or error cases, leaving minor gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents the three required parameters. The description adds minimal semantic context beyond the schema, such as linking calendarUrl to list_calendars output, but doesn't provide additional parameter details, meeting the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Get events from a calendar') and resource ('events'), distinguishing it from siblings like create_event, delete_event, get_event_details, and update_event by focusing on listing/retrieval rather than modification or detailed single-event operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states a prerequisite ('You must first call list_calendars to get the calendarUrl') and provides clear context on when to use this tool (for retrieving events within a date range), with implicit alternatives being other event-related tools for different operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_eventAIdempotent
Modify an existing event. PREREQUISITE: You must first call list_calendars, then list_events to get the eventUrl. Only include fields you want to change; omitted fields stay the same.
| Name | Required | Description | Default |
|---|---|---|---|
| eventUrl | Yes | REQUIRED. The event URL from list_events output. Example: 'https://caldav.fastmail.com/dav/calendars/user/.../event.ics' | |
| summary | No | Optional. New title for the event. | |
| description | No | Optional. New description/notes for the event. | |
| startDate | No | Optional. New start time in ISO format. | |
| endDate | No | Optional. New end time in ISO format. | |
| location | No | Optional. New location for the event. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds valuable behavioral context beyond annotations: it specifies the prerequisite workflow (calling list_calendars and list_events first) and the partial-update behavior ('Only include fields you want to change; omitted fields stay the same'). Annotations cover read/write status (readOnlyHint=false), idempotency (idempotentHint=true), and non-destructiveness (destructiveHint=false), but the description complements this with practical usage details. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise and front-loaded: the first sentence states the core purpose, followed by prerequisite and behavioral details in two additional sentences. Every sentence earns its place by providing critical guidance without redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (mutation with prerequisites), rich annotations (covering safety and idempotency), and full schema coverage, the description is nearly complete. It adds key contextual details like prerequisites and partial-update behavior. The main gap is lack of output schema or description of return values, but annotations help mitigate this. It's well-suited for the agent's needs.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with all parameters well-documented in the input schema (e.g., eventUrl is REQUIRED with an example, others are optional with clear purposes). The description adds minimal parameter semantics beyond the schema, only reinforcing the eventUrl prerequisite and partial-update approach. This meets the baseline of 3 when schema coverage is high.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Modify an existing event') and resource ('event'), distinguishing it from siblings like create_event (creates new), delete_event (removes), get_event_details (reads), and list_events (lists). It goes beyond just restating the name/title by specifying it's for modifying existing events.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit prerequisites ('You must first call list_calendars, then list_events to get the eventUrl'), which tells the agent exactly when and how to prepare for using this tool. It also implicitly distinguishes from alternatives by focusing on modification rather than creation, deletion, or listing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v1.0.0- First observed
create_event - First observed
delete_event - First observed
get_event_details - First observed
list_calendars - First observed
list_events - First observed
update_event
TDQS
Each tool has a clearly distinct purpose with no ambiguity: list_calendars and list_events are for discovery, create_event and update_event for modifications, get_event_details for reading parsed data, and delete_event for removal. The prerequisites and descriptions reinforce their unique roles, making misselection unlikely.
All tools follow a consistent verb_noun pattern (e.g., list_calendars, create_event, delete_event) using snake_case throughout. This predictability makes the tool set easy to navigate and understand at a glance.
With 6 tools, the server is well-scoped for calendar management, covering essential CRUD operations (create, read, update, delete) plus necessary discovery steps (list_calendars, list_events). Each tool earns its place without bloat or gaps.
The tool set provides complete coverage for calendar event management: discovery (list_calendars, list_events), creation (create_event), reading (get_event_details), updating (update_event), and deletion (delete_event). There are no dead ends or obvious gaps, supporting full lifecycle workflows.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
GDPR-compliant calendar access for AI assistants. Google, Microsoft 365, Apple & more. EU-hosted.
Connects ChatGPT to your Apple Calendar via a local Mac agent + Vercel relay
Scheduling infrastructure for AI agents across Google and Microsoft calendars.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Google Calendar through natural language interactions with features like creating, updating, and deleting events, searching calendars, and supporting natural language date/time inputs.272MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to view, create, update, search, and manage Google Calendar events, including multi-account support and availability checks.15Business Source 1.1
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Google Calendar events through natural language interactions, including creating, updating, deleting, and listing events.18ISC
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Google Calendar events, including reading, searching, creating, updating, and deleting events, as well as checking availability and listing calendars.25MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NOVA-3951/Fastmail-Calendar-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server